zh_base.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. ---
  3. <!doctype html>
  4. <!--
  5. Minimal Mistakes Jekyll Theme 4.16.5 by Michael Rose
  6. Copyright 2013-2019 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. <html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
  11. <head>
  12. {% include head.html %}
  13. {% include head/custom.html %}
  14. </head>
  15. <body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
  16. {% include_cached skip-links.html %}
  17. {% include_cached browser-upgrade.html %}
  18. {% include_cached zh_masthead.html %}
  19. <div class="initial-content">
  20. {{ content }}
  21. </div>
  22. {% if site.search == true %}
  23. <div class="search-content">
  24. {% include_cached search/search_form.html %}
  25. </div>
  26. {% endif %}
  27. <div id="footer" class="page__footer">
  28. <footer>
  29. {% include footer/custom.html %}
  30. {% include_cached footer.html %}
  31. </footer>
  32. </div>
  33. {% include scripts.html %}
  34. </body>
  35. </html>