26 lines
1.1 KiB
Scheme
26 lines
1.1 KiB
Scheme
|
<% include Syntro\SilverStripeElementalBaseitems\ContentBlock %>
|
||
|
|
||
|
<div class="row justify-content-center text-center">
|
||
|
<% loop Spotlights %>
|
||
|
<div class="{$ElementName}__spotlight col-12 col-md-4 d-flex flex-column align-items-center my-3">
|
||
|
<img src="$Image.Fill(800,500).URL" alt="$Title" class="{$ElementName}__spotlight-image img-fluid rounded shadow">
|
||
|
<% if ShowTitle %>
|
||
|
<h3 class="{$ElementName}__spotlight-title mt-4">$Title</h3>
|
||
|
<% end_if %>
|
||
|
<% if SubTitle %>
|
||
|
<div class="{$ElementName}__spotlight-subtitle">
|
||
|
<lead><strong>$SubTitle</strong></lead>
|
||
|
</div>
|
||
|
<% end_if %>
|
||
|
<p class="{$ElementName}__spotlight-content mt-4 px-3"><i>$Content</i></p>
|
||
|
<% if CTALink %>
|
||
|
<% with CTALink %>
|
||
|
<a {$IDAttr} class="{$ElementName}__spotlight-link mx-1 text-$Up.LinkColor" href="{$LinkURL}"{$TargetAttr}>
|
||
|
{$Title}
|
||
|
</a>
|
||
|
<% end_with %>
|
||
|
<% end_if %>
|
||
|
</div>
|
||
|
<% end_loop %>
|
||
|
</div>
|