mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
46 lines
1.5 KiB
Scheme
46 lines
1.5 KiB
Scheme
<% if $Video || $Image %>
|
|
<% if $Video %>
|
|
<div class="video">
|
|
$Video.EmbedHTML.RAW
|
|
</div>
|
|
<% else %>
|
|
<% if $Image %>
|
|
<span class="img">
|
|
<img class="d-block w-100" src="$Image.Fill(1400,650).URL" alt="<% if $Headline %>$Headline<% end_if %>">
|
|
</span>
|
|
<% end_if %>
|
|
|
|
<% if $SlideLinkID %>
|
|
<% with $SlideLink %>
|
|
<a href="$LinkURL" title="$Title.XML" class="stretched-link">
|
|
<span class="sr-only">$Title</span>
|
|
</a>
|
|
<% end_with %>
|
|
<% end_if %>
|
|
<% end_if %>
|
|
<% end_if %>
|
|
|
|
<% if $Content || $Headline || $Description || $SlideLinkID %>
|
|
<div class="carousel-caption container">
|
|
<div class="carousel-caption-container typography col-md-6">
|
|
<% if $Headline %><h2 class="carousel-title">$Headline</h2><% end_if %>
|
|
|
|
<% 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>
|
|
</div>
|
|
<% end_if %>
|