default.html 648 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. {% include head.html %}
  4. <body>
  5. <!-- .js-show-sidebar shows sidebar by default -->
  6. <div id="js-textbook" class="c-textbook {% if site.show_sidebar %}js-show-sidebar{% endif %}">
  7. {% include sidebar.html %}
  8. {% if page.search_page != true %}
  9. {% endif %}
  10. {% include topbar.html %}
  11. <main class="c-textbook__page" tabindex="-1">
  12. <div class="c-textbook__content" id="textbook_content">
  13. {{ content }}
  14. </div>
  15. {% include page-nav.html %}
  16. {% include footer.html %}
  17. </div>
  18. </main>
  19. </div>
  20. </body>
  21. </html>