blob: e0e9038d9fd836960165bcf204577aabeb3e47ec [file] [log] [blame]
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +05301{% if slideshow %}
2{{ slideshow_header }}
3<div id="myCarousel" class="carousel slide">
4 <div class="carousel-inner">
5 {% for slide in obj.slides %}
6 <div class="{% if slide.idx==1 %}active {% endif %}item">
7 <img src="{{ slide.image }}" />
Rushabh Mehta758131b2013-03-12 11:07:45 +05308 {% if slide.heading or slide.description %}
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +05309 <div class="carousel-caption">
Rushabh Mehta758131b2013-03-12 11:07:45 +053010 {% if slide.heading %}<h4>{{ slide.heading }}</h4>{% endif %}
11 {% if slide.heading %}<p>{{ slide.description }}</p>{% endif %}
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +053012 </div>
Rushabh Mehta758131b2013-03-12 11:07:45 +053013 {% endif %}
Rushabh Mehta5f1d57e2012-12-27 14:05:02 +053014 </div>
15 {% endfor %}
16 </div>
17 <a class="carousel-control left" href="#myCarousel"
18 data-slide="prev">&lsaquo;</a>
19 <a class="carousel-control right" href="#myCarousel"
20 data-slide="next">&rsaquo;</a>
21 </div>
22 <script>$(".carousel").carousel();</script>
23{% endif %}