default.html 800 B

123456789101112131415161718192021222324252627282930313233
  1. <!--
  2. ___ ___ _ _ ___ _____ _____ _____
  3. / |/ | | | / / |_ | / ___| | _ \ | ____|
  4. / /| /| | | |/ / | | | |___ | | | | | |__
  5. / / |__/ | | | |\ \ | | | _ \ | | | | | __|
  6. / / | | | | \ \ | | | |_| | | |_| | | |___
  7. /_/ |_| |_| \_\ |_| \_____/ |_____/ |_____|
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="{% if page.lang %}{{ page.lang }}{% else %}{{ site.lang }}{% endif %}">
  11. <head>{%- include head.html -%}</head>
  12. <body>
  13. <header>
  14. {%- include menu.html -%}
  15. {%- include header.html -%}
  16. </header>
  17. <main>
  18. {{ content }}
  19. </main>
  20. <footer>
  21. {%- include footer.html -%}
  22. </footer>
  23. </body>
  24. </html>