404.html 422 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Not found</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=${_response_encoding}"/>
  6. </head>
  7. <body>
  8. #{if play.mode.name() == 'DEV'}
  9. #{404 result /}
  10. #{/if}
  11. #{else}
  12. <h1>Not found</h1>
  13. <p>
  14. ${result.message}
  15. </p>
  16. #{/else}
  17. </body>
  18. </html>