sterntours/trunk/app/Resources/views/default/pages/cms/travelProgramOverview.html.twig
2019-05-29 20:37:17 +02:00

37 lines
No EOL
1.2 KiB
Twig

{% extends get_base_template() %}
{% block body %}
<div id="section_order">
<h1>{{ page.pagetitle|default(page.title) }}</h1>
<section class="clearfix" id="section_order_second">
{{ page.content|keywords|raw|lozad }}
</section>
<section class="clearfix" id="section_order_first">
{#{% for i in 0..page.children|length//3 %}#}
<div class="row">
{% for child_page in child_pages if child_page.status == 1 and child_page.travelProgram is not empty %}
{% include 'default/components/pageBox.html.twig' %}
{% endfor %}
</div>
{% if mediated_child_pages is not empty %}
<h2>
Vermittelte Rundreisen vom {{ page.country is not empty ? (page.country.name ~ '-') }}Spezialisten
STERN TOURS aus Berlin
</h2>
<div class="row">
{% for child_page in mediated_child_pages %}
{% include 'default/components/pageBox.html.twig' %}
{% endfor %}
</div>
{% endif %}
</section>
</div>
{% endblock %}