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 24 <div id="myCarousel" class="carousel slide " data-ride="carousel">
25 25 <!-- Indicators -->
26 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 28 {% for new in news %}
29 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 31 {% endif %}
32 32 {% endfor %}
33 33 </ol>
... ...