* CMS-template "sunstar" als Destinationsübersicht für importierte Jugendreisen * Weitere "rel=nofollow target=_blank * target="_blank" beachten, wenn Boxen per JS click-Event verlinkt werden * https://schema.org statt http * meta itemprop=url auf https://www.sterntours.de geändert * Startseiten-Content geändert * "Rote" (nicht verfügbare) Termine auf Suchergebnisseite und Reiseprogrammseiten ausblenden * Behoben: Fehlermeldung, wenn Start- und Enddatum im Suchfilter nicht eingetragen werden git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3320 f459cee4-fb09-11de-96c3-f9c5f16c3c76
49 lines
No EOL
2.1 KiB
Twig
49 lines
No EOL
2.1 KiB
Twig
{% extends get_base_template() %}
|
|
|
|
{% block body %}
|
|
<section class="clearfix">
|
|
<h1>{{ page.pagetitle|default(page.title) }}</h1>
|
|
|
|
{#{% for i in 0..page.children|length//3 %}#}
|
|
<div class="row">
|
|
{% for tp in sunstar_travel_programs %}
|
|
|
|
<div class="col-md-4 col-sm-4">
|
|
<div class="travel-wrapper get-box-link">
|
|
<div class="item text-left">
|
|
<div class="item-img">
|
|
<div class="lb">
|
|
{% if tp.minimumPrice is not empty %}
|
|
<div class="cprice">ab {{ tp.minimumPrice }} € p.P.</div>
|
|
{% endif %}
|
|
{% if tp.minimumAge is not empty and tp.maximumAge is not empty %}
|
|
<div class="cdiscount">
|
|
{{ tp.minimumAge }} - {{ tp.maximumAge }} Jahre
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="img-background" style="background-image: url('{{ tp.imageUrl }}');"></div>
|
|
|
|
</div>
|
|
<div class="box_mid">
|
|
<div class="hl5">{{ tp.title }}</div>
|
|
<p>{{ tp.description }}</p>
|
|
</div>
|
|
<a class="item-button is-box-link dobble_line" href="{{ tp.url }}" title="{{ tp.title }}"
|
|
rel="nofollow" target="_blank"
|
|
>
|
|
<span>{{ tp.title }}</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
|
|
<section class="clearfix">
|
|
{{ page.content|raw|keywords }}
|
|
</section>
|
|
{% endblock %} |