2019-10-20 03:00:05 +02:00
|
|
|
<% if $Video || $Image %>
|
|
|
|
<% if $Video %>
|
|
|
|
<div class="video">
|
|
|
|
$Video.EmbedHTML.RAW
|
|
|
|
</div>
|
|
|
|
<% else %>
|
2019-12-17 21:43:28 +01:00
|
|
|
<% if $Image || $ImageURL %>
|
2019-10-20 03:00:05 +02:00
|
|
|
<span class="img">
|
2019-12-17 21:43:28 +01:00
|
|
|
<img class="d-block w-100"
|
2020-02-07 20:51:42 +01:00
|
|
|
src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
|
|
|
|
data-lazy-src="<% if $ImageURL %>$ImageURL<% else %>$Image.Fill(1400,650).URL<% end_if %>"
|
2019-12-17 21:43:28 +01:00
|
|
|
alt="<% if $Headline %>$Headline.XML<% end_if %>"
|
|
|
|
/>
|
2019-10-20 03:00:05 +02:00
|
|
|
</span>
|
|
|
|
<% end_if %>
|
2019-11-07 19:26:33 +01:00
|
|
|
|
|
|
|
<% if $SlideLinkID %>
|
|
|
|
<% with $SlideLink %>
|
|
|
|
<a href="$LinkURL" title="$Title.XML" class="stretched-link">
|
|
|
|
<span class="sr-only">$Title</span>
|
|
|
|
</a>
|
|
|
|
<% end_with %>
|
2019-12-17 21:43:28 +01:00
|
|
|
<% else_if $SlideLinkURL %>
|
|
|
|
<a href="$SlideLinkURL" title="$Headline.XML" class="stretched-link">
|
|
|
|
<span class="sr-only">$Headline</span>
|
|
|
|
</a>
|
2019-11-07 19:26:33 +01:00
|
|
|
<% end_if %>
|
2019-12-17 21:43:28 +01:00
|
|
|
|
2019-10-20 03:00:05 +02:00
|
|
|
<% end_if %>
|
|
|
|
<% end_if %>
|
|
|
|
|
2019-11-07 19:26:33 +01:00
|
|
|
<% if $Content || $Headline || $Description || $SlideLinkID %>
|
|
|
|
<div class="carousel-caption container">
|
2019-12-17 21:43:28 +01:00
|
|
|
<div class="carousel-caption-container typography">
|
2019-11-07 19:26:33 +01:00
|
|
|
<% if $Headline %><h2 class="carousel-title">$Headline</h2><% end_if %>
|
2019-10-20 03:00:05 +02:00
|
|
|
|
2019-11-07 19:26:33 +01:00
|
|
|
<% if $Content %>
|
|
|
|
<div class="carousel-content">$Content</div>
|
|
|
|
<% else_if $Description %>
|
|
|
|
<p class="carousel-content">$Description</p>
|
|
|
|
<% end_if %>
|
|
|
|
|
|
|
|
<% if $SlideLinkID %>
|
|
|
|
<% with $SlideLink %>
|
|
|
|
<div class="text-right">
|
|
|
|
<a href="$LinkURL" title="$Title.XML" class="slide-link">
|
|
|
|
$Title »
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<% end_with %>
|
|
|
|
<% end_if %>
|
|
|
|
</div>
|
2019-10-20 03:00:05 +02:00
|
|
|
</div>
|
2019-11-07 19:26:33 +01:00
|
|
|
<% end_if %>
|