reitanlage-oranienburg/templates/info-list.html.twig

31 lines
981 B
Twig
Raw Permalink Normal View History

2020-01-23 22:41:15 +00:00
{% extends 'partials/base.html.twig' %}
{% set collection = page.collection() %}
{% block content %}
2020-01-28 22:03:41 +00:00
{% if page.content %}
{{ page.content }}
<hr class="mb-4" />
{% endif %}
2020-01-23 22:41:15 +00:00
{% for child in collection %}
{% if child.template == 'info' %}
<div class="row">
{% set text_class = 'col-12' %}
{% if child.media.images|first %}
{% set text_class = 'col-12 col-md-6' %}
<div class="col-12 col-md-6">
<img width="100%" src="{{ child.media.images|first.url }}">
</div>
{% endif %}
<div class="{{ text_class }}">
{{ child.content }}
</div>
</div>
{% else %}
<a href="{{ child.url }}">{{ child.title }}</a>
<p>{{ child.summary }}</p>
{% endif %}
2020-01-26 13:23:47 +00:00
<hr class="mb-4" />
2020-01-23 22:41:15 +00:00
{% endfor %}
{% endblock %}