#? stdtmpl(subsChar = '$', metaChar = '#') #import "main_template_top.nimf", "main_template_bottom.nimf" #proc error404Template*(csrfToken: string): string = # result = "" ${mainTemplateTop("Error! Status Code: 404", csrfToken)} <div class="pjax-me"> <h1 class="mt-8 text-xl text-red-500">Error! Status Code: 404</h1><br> <p>The page or resource requested does not exist.<br><br> Please try again, or report to site admin.<br><br> Thanks!</p> </div> ${mainTemplateBottom()} <div class="page-js"></div> </body> </html> #end proc