cyberstammtisch-silverstripe/themes/monkee21/templates/Syntro/SilverStripeElementalBootstrapTestimonialSection/Elements/TestimonialSection.ss

20 lines
909 B
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 Testimonials %>
<div class="{$ElementName}__testimonial col-12 col-md-6 col-lg-4 d-flex flex-column align-items-center my-3">
<div class="{$ElementName}__testimonial-image px-5">
<img src="$Image.URL" alt="$Title" class="w-50 img-fluid rounded-circle shadow">
</div>
<% if ShowTitle %>
<h3 class="{$ElementName}__testimonial-title mt-4">$Title</h3>
<% end_if %>
<% if SubTitle %>
<div class="{$ElementName}__testimonial-subtitle">
<lead><strong>$SubTitle</strong></lead>
</div>
<% end_if %>
<p class="{$ElementName}__testimonial-quote mt-4 px-3"><i>"$Quote"</i></p>
</div>
<% end_loop %>
</div>