activity.tpl 1.3 KB

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