123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {% 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 %}
- <section id="body-wrapper" class="section blog-listing">
- <section class="container {{ grid_size }}">
- {% if show_breadcrumbs and config.plugins.breadcrumbs.enabled %}
- {% include 'partials/breadcrumbs.html.twig' %}
- {% endif %}
- {% embed 'partials/layout.html.twig' with {blog: page} %}
- {% block item %}
- <div class="bricklayer">
- {% for child in collection %}
- {% include 'partials/blog-list-item.html.twig' with {blog: page, page: child} %}
- {% endfor %}
- </div>
- {% if show_pagination and config.plugins.pagination.enabled and collection.params.pagination %}
- <div id="listing-footer">
- {% include 'partials/pagination.html.twig' with {base_url: page.url, pagination: collection.params.pagination} %}
- </div>
- {% endif %}
- {% endblock %}
- {% block sidebar %}
- {% include 'partials/sidebar.html.twig' %}
- {% endblock %}
- {% endembed %}
- </section>
- </section>
- <script>
- //Bricklayer
- var bricklayer = new Bricklayer(document.querySelector('.bricklayer'))
- </script>
- {% endblock %}
|