default.html 766 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="{{ site.lang }}">
  3. <head>{%- include head.html -%}</head>
  4. <body>
  5. <header>
  6. {%- include header.html -%}
  7. </header>
  8. <main>
  9. {{ content }}
  10. <div id="menu-container" class="menu-container">
  11. <hr>
  12. <div id="menu" class="menu">
  13. {% capture sidebar %}{% include sidebar.md %}{% endcapture %}
  14. {{ sidebar | markdownify }}
  15. </div>
  16. </div>
  17. </main>
  18. <footer>
  19. {%- include footer.html -%}
  20. </footer>
  21. {% if page.redirect %}<script>
  22. window.location = "{{ page.redirect }}";
  23. </script>{% endif %}
  24. </body>
  25. </html>