default.html 339 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html>
  3. {% include head.html %}
  4. <body>
  5. <div class="main-wrapper">
  6. {% include header.html %}
  7. {% include banner.html %}
  8. {{content}}
  9. {% if !page.comment %}
  10. {% include comments.html %}
  11. {% endif %}
  12. {% include footer.html %}
  13. </div>
  14. </body>
  15. {% include analytics.html %}
  16. </html>