Calorie counting web application written in the Go language

404.html 263B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Not found</title>
  5. </head>
  6. <body>
  7. {{if eq .RunMode "dev"}}
  8. {{template "errors/404-dev.html" .}}
  9. {{else}}
  10. {{with .Error}}
  11. <h1>
  12. {{.Title}}
  13. </h1>
  14. <p>
  15. {{.Description}}
  16. </p>
  17. {{end}}
  18. {{end}}
  19. </body>
  20. </html>