mirror of
https://github.com/a2nt/silverstripe-elemental-basics.git
synced 2024-10-22 17:05:54 +02:00
38 lines
1.2 KiB
Scheme
Executable File
38 lines
1.2 KiB
Scheme
Executable File
<% if $ShowTitle || $Content %>
|
|
<% if $ShowTitle %>
|
|
<h2 class="element__title">$Title</h2>
|
|
<% end_if %>
|
|
<% if $Content %>
|
|
<div class="element__html typography">$Content</div>
|
|
<% end_if %>
|
|
<% end_if %>
|
|
|
|
<% if $SlideShow %>
|
|
<div class="element__content">
|
|
<div
|
|
id="Carousel{$ID}"
|
|
class="element__carousel carousel slide js-carousel
|
|
<% if $SlidesInRow > 1 %>
|
|
carousel-multislide
|
|
<% end_if %>"
|
|
<% if $SlidesInRow > 1 %>
|
|
data-length="{$SlidesInRow}"
|
|
<% end_if %>
|
|
<% if $SlideShow.count > 1 %>
|
|
<% if $Interval %> data-bs-interval="$Interval"<% end_if %>
|
|
data-bs-indicators="true" data-bs-arrows="true"
|
|
<% end_if %>
|
|
>
|
|
<div class="carousel-inner">
|
|
<% loop $SlideShow %>
|
|
<div class="carousel-item carousel-item-{$SlideType}<% if no $Controls %> carousel-item-nocontrols<% end_if %><% if $First %> active<% end_if %>">
|
|
<div class="carousel-slide">
|
|
<% include SlideItem %>
|
|
</div>
|
|
</div>
|
|
<% end_loop %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end_if %>
|