cyberstammtisch-silverstripe/themes/monkee21/templates/Syntro/SilverStripeElementalBootstrapSpotlightSection/Elements/SpotlightSection.ss

26 lines
1.1 KiB
Scheme
Raw Normal View History

2023-01-03 22:38:16 +00:00
<% 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>