sterntours/trunk/app/Resources/views/default/pages/travelProgramOverview.html.twig
uli c924b4af15 * keywords im content mit Links ersetzen
* Links mit Klasse "show-modal" bei Klick in einen JS-Modal laden, statt dem Link zu folgen

git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3296 f459cee4-fb09-11de-96c3-f9c5f16c3c76
2017-02-17 13:16:15 +00:00

37 lines
No EOL
1.1 KiB
Twig

{% extends get_base_template() %}
{% block body %}
<section class="clearfix">
<div class="hl2">{{ page.pagetitle|default(page.title) }}</div>
{#{% 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>
<section class="clearfix">
{{ page.content|keywords|raw }}
</section>
{% endblock %}