default.html 400 B

12345678910111213141516171819202122
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. {% include header.html %}
  5. </head>
  6. <body>
  7. {% include skippy.html %}
  8. {% include docs-navbar.html %}
  9. {% if page.layout == "simple" %}
  10. {{ content }}
  11. {% else %}
  12. <main id="content" role="main">
  13. {{ content }}
  14. </main>
  15. {% endif %}
  16. {% include footer.html %}
  17. {% include scripts.html %}
  18. </body>
  19. </html>