slider.tpl 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. <h4 class="page-header">{{ "SystemAnnouncements" | get_lang }}</h4>
  2. <div id="announcements-slider" class="carousel slide" data-ride="carousel" style="height:300px;">
  3. <ol class="carousel-indicators">
  4. {% for announcement in announcements %}
  5. <li data-target="#announcements-slider" data-slide-to="{{ loop.index0 }}" {% if loop.index0 == 0 %} class="active" {% endif %}></li>
  6. {% endfor %}
  7. </ol>
  8. <div class="carousel-inner" role="listbox">
  9. {% for announcement in announcements %}
  10. <div class="item {% if loop.index0 == 0 %} active {% endif %}" style="height:300px;">
  11. {{ announcement.content }}
  12. {% if announcement.readMore %}
  13. <a href="{{ _p.web }}news_list.php?id={{ announcement.id }}">{{ "More" | get_lang }}</a>
  14. {% endif %}
  15. <div class="carousel-caption">
  16. <h5>{{ announcement.title }}</h5>
  17. </div>
  18. </div>
  19. {% endfor %}
  20. </div>
  21. <a class="left carousel-control" href="#announcements-slider" role="button" data-slide="prev">
  22. <i class="fa fa-chevron-left"></i>
  23. </a>
  24. <a class="right carousel-control" href="#announcements-slider" role="button" data-slide="next">
  25. <i class="fa fa-chevron-right"></i>
  26. </a>
  27. </div>