-
Notifications
You must be signed in to change notification settings - Fork 1
/
Carousel.ss
23 lines (22 loc) · 1.03 KB
/
Carousel.ss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<% if $SlideShow %>
<div class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<% loop $SlideShow %>
<div class="carousel-item <% if $First %>active<% end_if %>">
<% if $Link %><a href="$Link.LinkURL" title="$Link.Title"><% end_if %>
<img src="$Image.Fill(1200,600).URL" alt="<% if $Title %>$Title<% end_if %>">
<% if $Link %></a><% end_if %>
<div class="carousel-caption">
<% if $Title %><h2>$Title</h2><% end_if %>
<% if $Text %><p>$Text</p><% end_if %>
<% if $Link %>
<p>
<a href="$Link.LinkURL" title="$Link.Title.XML"><%t Twohill\Carousel\Extensions\Carousel.LEARN_MORE "Learn more" %></a>
</p>
<% end_if %>
</div>
</div>
<% end_loop %>
</div>
</div>
<% end_if %>