cyberstammtisch-silverstripe/themes/monkee21/templates/Syntro/SilverStripeElementalBootstrapGallerySection/Elements/GallerySection.ss

16 lines
841 B
Scheme
Raw Normal View History

2023-01-03 22:38:16 +00:00
<% require javascript('syntro/silverstripe-elemental-bootstrap-gallerysection:client/dist/gallery.js') %>
<% require css('syntro/silverstripe-elemental-bootstrap-gallerysection:client/dist/bundle.css') %>
<% include Syntro\SilverStripeElementalBaseitems\ContentBlock %>
<div class="{$ElementName}__gallery card-columns">
<% loop $GalleryImages %>
<div class="{$Up.ElementName}__image-holder card">
<a class="{$Up.ElementName}__image-link" href="$Image.URL" data-width="$Image.width" data-height="$Image.height" data-placeholder="$Image.Fit(600,600).URL" data-caption="$Caption">
<img src="$Image.Fit(600,600).URL" alt="$Title" class="{$Up.ElementName}__image card-img">
</a>
</div>
<% end_loop %>
</div>
<% include Syntro\SilverStripeElementalBootstrapGallerySection\PSWP %>