Commit 5ad366282f220a259e51e551e29bbf7969e2dcf5

Authored by Gustavo Lopes
1 parent 828c1852

Including toggle-slide class for banners

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
subjects/templates/subjects/home.html
@@ -24,10 +24,10 @@ @@ -24,10 +24,10 @@
24 <div id="myCarousel" class="carousel slide " data-ride="carousel"> 24 <div id="myCarousel" class="carousel slide " data-ride="carousel">
25 <!-- Indicators --> 25 <!-- Indicators -->
26 <ol class="carousel-indicators"> 26 <ol class="carousel-indicators">
27 - <li data-target="#myCarousel" data-slide-to="0" class="active"></li> 27 + <li class="slide_toggle" data-target="#myCarousel" data-slide-to="0" class="active"></li>
28 {% for new in news %} 28 {% for new in news %}
29 {% if forloop.counter != news.count %} 29 {% if forloop.counter != news.count %}
30 - <li data-target="#myCarousel" data-slide-to="{{forloop.counter}}"></li> 30 + <li class="slide_toggle" data-target="#myCarousel" data-slide-to="{{forloop.counter}}"></li>
31 {% endif %} 31 {% endif %}
32 {% endfor %} 32 {% endfor %}
33 </ol> 33 </ol>