{% extends 'partials/base.html.twig' %} {% set blog_image = page.media.images[page.header.hero_image] ?: page.media.images|first %} {% set collection = page.collection() %} {% set show_breadcrumbs = header_var('show_sidebar', '/blog')|default(true) %} {% set show_sidebar = header_var('show_sidebar')|default(true) %} {% set show_pagination = header_var('show_sidebar')|default(true) %} {% block stylesheets %} {% do assets.addCss('theme://css/bricklayer.css') %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% do assets.add('theme://js/bricklayer.min.js') %} {% endblock %} {% block hero %} {% include 'partials/hero.html.twig' with {id: 'blog-hero', content: page.content, hero_image: blog_image} %} {% endblock %} {% block body %}
{% if show_breadcrumbs and config.plugins.breadcrumbs.enabled %} {% include 'partials/breadcrumbs.html.twig' %} {% endif %} {% embed 'partials/layout.html.twig' with {blog: page} %} {% block item %}
{% for child in collection %} {% include 'partials/blog-list-item.html.twig' with {blog: page, page: child} %} {% endfor %}
{% if show_pagination and config.plugins.pagination.enabled and collection.params.pagination %} {% endif %} {% endblock %} {% block sidebar %} {% include 'partials/sidebar.html.twig' %} {% endblock %} {% endembed %}
{% endblock %}