You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.2 KiB

9 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title><%= title %></title>
  5. <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
  6. <meta name="author" content="J David Smith">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" type="text/css" href="<%= config.root + 'css/tufte.css'%>">
  9. <link rel="stylesheet" type="text/css" href="<%= config.root + 'css/tufte_ext.css'%>">
  10. <link rel="stylesheet" type="text/css" href="<%= config.root + 'css/solarized_light.css'%>">
  11. <link href="//fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
  12. <link rel="alternate" type="application/atom+xml"
  13. title="Record of Motion" href="<%= config.root + 'atom.xml' %>" />
  14. </head>
  15. <body>
  16. <%- partial('_partial/header') %>
  17. <%- body %>
  18. <footer>
  19. <% if(page.prev_link) { %><a href="<%= config.root + page.prev_link %>">&lt; Previous</a>
  20. <% } else if(!page.title && page.prev !== 0) { %><a href="<%= config.root %>">&lt; Previous</a><% } %>
  21. <% if(page.next_link) { %><a href="<%= config.root + page.next_link %>">Next &gt;</a><% } %>
  22. </footer>
  23. </body>
  24. </html>