#1342 #1343 #1345 #1346 #1349 git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3340 f459cee4-fb09-11de-96c3-f9c5f16c3c76
33 lines
1 KiB
Twig
33 lines
1 KiB
Twig
<h1>{{ travel_program.title|default(page.pagetitle)|default(page.title) }}</h1>
|
|
<h2 style="color: #666">{{ travel_program.subtitle }}</h2>
|
|
|
|
{{ travel_program.htmlDescription|raw|keywords }}
|
|
|
|
<h2>Eingeschlossene Leistungen</h2>
|
|
<ul>
|
|
{% for travel_program_service in travel_program.included|split('\n') %}
|
|
<li>{{ travel_program_service|raw }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% if travel_program.classDescription is not empty %}
|
|
{{ travel_program.classDescription|raw }}
|
|
{% endif %}
|
|
|
|
{% if travel_program.excluded is not empty %}
|
|
<h2>Nicht eingeschlossene / zubuchbare Leistungen</h2>
|
|
<ul>
|
|
{% for travel_program_service in travel_program.excluded|split('\n') %}
|
|
<li>{{ travel_program_service|raw }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if travel_program.advices is not empty %}
|
|
<h3>Hinweise</h3>
|
|
<ul>
|
|
{% for travel_program_advice in travel_program.advices|trim|split('\n') %}
|
|
<li>{{ travel_program_advice|raw }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|