default.html 551 B

12345678910111213141516171819202122232425
  1. ---
  2. layout: base
  3. ---
  4. <div class="intro-header"></div>
  5. <div role="main" class="{% if page.full-width %} container-fluid {% else %} container-md {% endif %}">
  6. {% if page.before-content %}
  7. <div class="before-content">
  8. {% for file in page.before-content %}
  9. {% include {{ file }} %}
  10. {% endfor %}
  11. </div>
  12. {% endif %}
  13. {{ content }}
  14. {% if page.after-content %}
  15. <div class="after-content">
  16. {% for file in page.after-content %}
  17. {% include {{ file }} %}
  18. {% endfor %}
  19. </div>
  20. {% endif %}
  21. </div>