You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.3 KiB
24 lines
1.3 KiB
{% for hot_course in hot_courses %}
|
|
{% if hot_course.extra_info.title %}
|
|
<div class="col-md-4">
|
|
<div class="items-course">
|
|
<div class="items-course-image">
|
|
<img class="image-responsive" src="{{ hot_course.extra_info.course_image_large }}" alt="{{ hot_course.extra_info.title|e }}"/>
|
|
</div>
|
|
</div>
|
|
<div class="items-course-info">
|
|
<h4 class="title">{{ hot_course.extra_info.title}}</h4>
|
|
<div class="teachers">{{ hot_course.extra_info.teachers }}</div>
|
|
<div class="ranking">
|
|
{{ hot_course.extra_info.rating_html }}
|
|
</div>
|
|
<div class="toolbar">
|
|
{{ hot_course.extra_info.description_button }}
|
|
{{ hot_course.extra_info.go_to_course_button }}
|
|
{{ hot_course.extra_info.register_button }}
|
|
{{ hot_course.extra_info.unsubscribe_button }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|