page.html 804 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. layout: base
  3. ---
  4. {% include header.html type="page" %}
  5. <div class="{% if page.full-width %} container-fluid {% else %} container-md {% endif %}" role="main">
  6. <div class="row">
  7. <div class="{% if page.full-width %} col {% else %} col-xl-8 offset-xl-2 col-lg-10 offset-lg-1 {% endif %}">
  8. {% if page.before-content %}
  9. <div class="before-content">
  10. {% for file in page.before-content %}
  11. {% include {{ file }} %}
  12. {% endfor %}
  13. </div>
  14. {% endif %}
  15. {{ content }}
  16. {% if page.after-content %}
  17. <div class="after-content">
  18. {% for file in page.after-content %}
  19. {% include {{ file }} %}
  20. {% endfor %}
  21. </div>
  22. {% endif %}
  23. {% include comments.html %}
  24. </div>
  25. </div>
  26. </div>