12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {% extends 'partials/base.html.twig' %}
- {% set blog_image = page.media.images[page.header.hero_image] ?: page.media.images|first %}
- {% set collection = page.collection() %}
- {% set blog = page.find(header_var('blog_url')|defined(theme_var('blog-page'))) %}
- {% set show_breadcrumbs = header_var('show_breadcrumbs', [page, blog])|defined(true) %}
- {% set show_sidebar = header_var('show_sidebar', [page, blog])|defined(true) %}
- {% set show_pagination = header_var('show_pagination', [page, blog])|defined(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 %}
|