activity.tpl 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {% for block in blocks %}
  2. {% if block.title %}
  3. <div class="page-header">
  4. <h4 class="title-tools">{{ block.title }}</h4>
  5. </div>
  6. {% endif %}
  7. <div class="row">
  8. <div class="{{ block.class }}">
  9. {% if 'homepage_view'|api_get_setting == 'activity' %}
  10. {% for item in block.content %}
  11. <div class="offset2 col-md-4 course-tool">
  12. {{ item.extra }}
  13. {{ item.visibility }}
  14. {{ item.only_icon_small }}
  15. {{ item.link }}
  16. </div>
  17. {% endfor %}
  18. {% endif %}
  19. {% if 'homepage_view'|api_get_setting == 'activity_big' %}
  20. {% for item in block.content %}
  21. <div class="col-xs-6 col-sm-4 col-md-3">
  22. <div class="course-tool">
  23. <div class="big_icon">
  24. {{ item.tool.image }}
  25. </div>
  26. <div class="content">
  27. {{ item.visibility }}
  28. {{ item.extra }}
  29. {{ item.link }}
  30. </div>
  31. </div>
  32. </div>
  33. {% endfor %}
  34. {% endif %}
  35. </div>
  36. </div>
  37. {% endfor %}