cyberstammtisch-silverstripe/themes/monkee21/templates/Syntro/SilverStripeElementalBootstrapFeatureSection/Elements/IllustratedFeatureSection_image_center.ss

74 lines
3.5 KiB
Scheme
Executable file

<% include Syntro\SilverStripeElementalBaseitems\ContentBlock %>
<div class="row align-items-start justify-content-center ">
<div class="col-12 col-lg-4">
<% loop Features %>
<% if $Odd %>
<div class="{$Up.ElementName}__feature">
<div class="media">
<div class="{$Up.ElementName}__feature-icon mr-3" style="width:3rem;">
<% if IsSvgIcon %>
<img src="$Icon.URL" alt="$Title" class="img-fluid">
<% else %>
<img src="$Icon.Fill(500,500).URL" alt="$Title" class="img-fluid">
<% end_if %>
</div>
<div class="{$Up.ElementName}__feature-body media-body">
<% if ShowTitle %>
<h3 class="{$Up.ElementName}__feature-title mt-2 mb-4">$Title</h3>
<% end_if %>
<p class="{$Up.ElementName}__feature-content mb-4">$Content</p>
<% if CTALink %>
<% with CTALink %>
<a {$IDAttr} class="{$Up.ElementName}__feature-link text-$Up.Up.LinkColor" href="{$LinkURL}" {$TargetAttr}>
<%t Syntro\SilverStripeElementalBootstrapFeatureSection\Model\Feature.CTA 'Read more...' %>
</a>
<% end_with %>
<% end_if %>
</div>
</div>
</div>
<% end_if %>
<% end_loop %>
</div>
<div class="align-self-center col-10 col-md-5 col-lg-4 col-xl-3 my-4">
<img class="img-fluid" src="$Image.URL" alt="$Title">
</div>
<div class="col-12 col-lg-4">
<% loop Features %>
<% if $Even %>
<div class="{$Up.ElementName}__feature">
<div class="media">
<div class="{$Up.ElementName}__feature-icon mr-3" style="width:3rem;">
<% if IsSvgIcon %>
<img src="$Icon.URL" alt="$Title" class="img-fluid">
<% else %>
<img src="$Icon.Fill(500,500).URL" alt="$Title" class="img-fluid">
<% end_if %>
</div>
<div class="{$Up.ElementName}__feature-body media-body">
<% if ShowTitle %>
<h3 class="{$Up.ElementName}__feature-title mt-2 mb-4">$Title</h3>
<% end_if %>
<p class="{$Up.ElementName}__feature-content mb-4">$Content</p>
<% if CTALink %>
<% with CTALink %>
<a {$IDAttr} class="{$Up.ElementName}__feature-link text-$Up.Up.LinkColor" href="{$LinkURL}" {$TargetAttr}>
<%t Syntro\SilverStripeElementalBootstrapFeatureSection\Model\Feature.CTA 'Read more...' %>
</a>
<% end_with %>
<% end_if %>
</div>
</div>
</div>
<% end_if %>
<% end_loop %>
</div>
</div>