* ab-Preis in Box nur anzeigen, wenn Termine verfügbar * Behoben: ab-Preis in Box berücksichtigt Rabatt nicht * Behoben: Sidebar-Navigation wird auf manchen Seiten nicht angezeigt * AGB Buchungsformular in Abh. des Reiseveranstalters anzeigen * Behoben: Server-Fehler bei Zugriff auf Reisetermine, falls Zielflughafen im Reiseprogramm nicht gesetzt git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3294 f459cee4-fb09-11de-96c3-f9c5f16c3c76
36 lines
1.8 KiB
Twig
36 lines
1.8 KiB
Twig
{# @var child_page \AppBundle\Entity\Page #}
|
|
<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 child_page.boxStar is not empty %}
|
|
<div class="cstar_left">{{ child_page.boxStar|raw }}</div>
|
|
{% endif %}
|
|
{% if child_page.travelProgram is not empty and child_page.travelProgram.lowestPrice > 0 %}
|
|
<div class="cprice">ab {{ child_page.travelProgram.lowestPrice|number_format }} € p.P.</div>
|
|
{% endif %}
|
|
{% if child_page.boxDiscount is not empty %}
|
|
<div class="cdiscount">{{ child_page.boxDiscount|raw }}</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if child_page.travelProgram is not empty and child_page.travelProgram.previewImage is not empty %}
|
|
<img src="https://www.sterntours.de/uploads/travel_program/{{ child_page.travelProgram.previewImage.fileNameWithExtension }}"
|
|
alt="{{ child_page.title }}"
|
|
>
|
|
{% else %}
|
|
<img src="{{ child_page.boxImageUrl ~ '/bundles/app/images/page1_img1.jpg' }}"
|
|
alt="{{ child_page.title }}"
|
|
>
|
|
{% endif %}
|
|
</div>
|
|
<div class="box_mid">
|
|
<div class="hl5">{{ child_page.title }}</div>
|
|
<p>{{ child_page.description }}</p>
|
|
</div>
|
|
<a class="item-button is-box-link dobble_line" href="{{ child_page.urlPath }}" title="{{ child_page.title }}">
|
|
{{ child_page.title }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|