blob: b148cb1ce8d7f1c7f5d506e5ad4bb88e83893649 [file] [log] [blame]
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +05301{% if slideshow %}
2{{ slideshow_header }}
Rushabh Mehtaec4dfab2013-05-28 17:01:52 +05303
4
5<div id="the-carousel" class="carousel slide">
6 <!-- Indicators -->
7 <ol class="carousel-indicators">
8 {% for slide in obj.slides %}
9 <li data-target="#the-carousel" data-slide-to="0"
10 {%- if loop.index==0 %}class="active"{% endif %}></li>
11 {% endfor %}
12 </ol>
13
14 <!-- Wrapper for slides -->
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +053015 <div class="carousel-inner">
16 {% for slide in obj.slides %}
17 <div class="{% if slide.idx==1 %}active {% endif %}item">
18 <img src="{{ slide.image }}" />
Rushabh Mehta758131b2013-03-12 11:07:45 +053019 {% if slide.heading or slide.description %}
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +053020 <div class="carousel-caption">
Rushabh Mehta758131b2013-03-12 11:07:45 +053021 {% if slide.heading %}<h4>{{ slide.heading }}</h4>{% endif %}
Anand Doshi62410122013-05-22 12:37:50 +053022 {% if slide.description %}<p>{{ slide.description }}</p>{% endif %}
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +053023 </div>
Rushabh Mehta758131b2013-03-12 11:07:45 +053024 {% endif %}
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +053025 </div>
26 {% endfor %}
27 </div>
Rushabh Mehtaec4dfab2013-05-28 17:01:52 +053028
29 <!-- Controls -->
30 <a class="left carousel-control" href="#the-carousel" data-slide="prev">
31 <span class="icon icon-chevron-left"></span>
32 </a>
33 <a class="right carousel-control" href="#the-carousel" data-slide="next">
34 <span class="icon icon-chevron-right"></span>
35 </a>
36</div>
37
38<script>$(".carousel").carousel();</script>
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +053039{% endif %}