James Peret's blog. Built with Jekyll and the Mikey theme.

default.html 632B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us" class="no-js">
  3. {% include head.html %}
  4. <body>
  5. {% if page.url != '/index.html' %}
  6. <input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
  7. {% include sidebar-nav.html %}
  8. {% include menu.html %}
  9. {% endif %}
  10. {{ content }}
  11. {% if page.url != '/index.html' %}
  12. {% include sidebar-toggle.html %}
  13. {% endif %}
  14. {% if page.url == '/index.html' %}
  15. {% include subscribe.html %}
  16. {% include footer.html %}
  17. {% endif %}
  18. {% include footer-scripts.html %}
  19. </body>
  20. </html>