template.ejs 618 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <!-- Simple HttpErrorPages | MIT License | https://github.com/HttpErrorPages -->
  5. <meta charset="utf-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <title>We've got some trouble | <%= code %> - <%= title %></title>
  7. <style type="text/css"><%- inlinecss %></style>
  8. </head>
  9. <body>
  10. <div class="cover"><h1><%= title %> <small>Error <%= code %></small></h1><p class="lead"><%= message %></p></div>
  11. <% if (footer){ %><footer><p><%- footer %></p></footer><% } %>
  12. </body>
  13. </html>