template.ejs 630 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html lang="<%= vars.language %>">
  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><%= vars.pagetitle %></title>
  7. <style type="text/css"><%- vars.inlinecss %></style>
  8. </head>
  9. <body>
  10. <div class="cover"><h1><%= vars.title %> <small><%= vars.code %></small></h1><p class="lead"><%= vars.message %></p></div>
  11. <% if (vars.footer){ %><footer><p><%- vars.footer %></p></footer><% } %>
  12. </body>
  13. </html>