default.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ---
  2. ---
  3. <!doctype html>
  4. <!--
  5. Minimal Mistakes Jekyll Theme 4.24.0 by Michael Rose
  6. Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
  7. Free for personal and commercial use under the MIT license
  8. https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
  9. -->
  10. <!-- for guide purposes all caching is removed and is separately built. -->
  11. <html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
  12. <head>
  13. {% include head.html %}
  14. {% include head/custom.html %}
  15. </head>
  16. <body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
  17. {% include skip-links.html %}
  18. {% include browser-upgrade.html %}
  19. {% include masthead.html %}
  20. <div class="initial-content">
  21. {{ content }}
  22. </div>
  23. {% if site.search == true %}
  24. <div class="search-content">
  25. {% include search/search_form.html %}
  26. </div>
  27. {% endif %}
  28. <div id="footer" class="page__footer">
  29. <footer>
  30. {% include footer/custom.html %}
  31. {% include footer.html %}
  32. </footer>
  33. </div>
  34. {% include scripts.html %}
  35. </body>
  36. </html>