hot_courses.tpl 850 B

1234567891011121314151617181920212223
  1. {% if hot_courses is not null and hot_courses is not empty %}
  2. <section class="hot-courses">
  3. <div class="page-header">
  4. <h4>
  5. {{ "HottestCourses"|get_lang}}
  6. {% if _u.is_admin %}
  7. <span class="pull-right">
  8. <a title="{{ "Hide"|get_lang }}"
  9. alt="{{ "Hide"|get_lang }}"
  10. href="{{ _p.web_main }}admin/settings.php?search_field=show_hot_courses&submit_button=&_qf__search_settings=&category=search_setting">
  11. <i class="fa fa-eye" aria-hidden="true"></i>
  12. </a>
  13. </span>
  14. {% endif %}
  15. </h4>
  16. </div>
  17. <div id="list-hot-courses" class="grid-courses">
  18. <div class="row">
  19. {% include 'layout/hot_course_item.tpl'|get_template %}
  20. </div>
  21. </div>
  22. </section>
  23. {% endif %}