{% extends 'partials/base.html.twig' %}
{% set collection = page.collection() %}
{% set image = page.media.images|first %}
{% block stylesheets %}
{% do assets.addCss('theme://css/bricklayer.css') %}
{{ parent() }}
{% endblock %}
{% block body %}
{% if image %}
{{image.html}}
{% endif %}
{{page.title}}
{{content}}
{% if show_sidebar %}
{% block sidebar %}
{% include 'partials/sidebar.html.twig' %}
{% endblock %}
{% endif %}
{% for item in page.collection %}
{{item.title}}
{{item.content}}
{% endfor %}
{% endblock %}