blog.html.twig 587 B

12345678910111213141516171819202122232425
  1. {% extends 'partials/base.html.twig' %}
  2. {% set collection = page.collection() %}
  3. {% block header %}
  4. <header>
  5. <h1>
  6. <a href="/">{{site.title}}</a>
  7. </h1>
  8. </header>
  9. {% endblock %}
  10. {% block body %}
  11. <section class="body-wrapper" id="item_list">
  12. {% block item %}
  13. {% for child in collection %}
  14. {% include 'partials/blog-list-item.html.twig' with {blog: page, page: child} %}
  15. {% endfor %}
  16. {% endblock %}
  17. </section>
  18. {% block aside %}
  19. {% include 'partials/sidebar.html.twig' %}
  20. {% endblock %}
  21. {% endblock %}