Calorie counting web application written in the Go language

500.html 269B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Application error</title>
  5. </head>
  6. <body>
  7. {{if eq .RunMode "dev"}}
  8. {{template "errors/500-dev.html" .}}
  9. {{else}}
  10. <h1>Oops, an error occured</h1>
  11. <p>
  12. This exception has been logged.
  13. </p>
  14. {{end}}
  15. </body>
  16. </html>