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.

36 lines
1.3 KiB

9 years ago
9 years ago
5 years ago
9 years ago
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. <% if(config.author) { %>
  7. <meta name="author" content="<%= config.author %>">
  8. <% } %>
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. <link rel="stylesheet" type="text/css" href="<%= config.root + 'css/tufte.css'%>">
  11. <link rel="stylesheet" type="text/css" href="<%= config.root + 'css/tufte_ext.css'%>">
  12. <link rel="stylesheet" type="text/css" href="<%= config.root + 'css/solarized_light.css'%>">
  13. <link href="//fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
  14. <% if(config.feed) { %>
  15. <link rel="alternate" type="application/<%= config.feed.type %>+xml"
  16. title="<%= config.title %>" href="<%= url_for(config.feed.path) %>" />
  17. <% } %>
  18. <script>
  19. MathJax = {
  20. tex: {
  21. inlineMath: [['$', '$'], ['\\(', '\\)']]
  22. }
  23. };
  24. </script>
  25. <script id="MathJax-script" async
  26. src="/mathjax/tex-svg.js">
  27. </script>
  28. </head>
  29. <body>
  30. <%- partial('_partial/header') %>
  31. <%- body %>
  32. <footer>
  33. made in the boiling hot cement cubes of Philadelphia PA.
  34. </footer>
  35. </body>
  36. </html>