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.
25 lines
1.5 KiB
25 lines
1.5 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">
|
|
<a href="{{ hot_course.extra_info.course_public_url }}"><img class="img-responsive" src="{{ hot_course.extra_info.course_image_large }}" alt="{{ hot_course.extra_info.title|e }}"/></a>
|
|
</div>
|
|
<div class="items-course-info">
|
|
<h4 class="title">
|
|
<a title="{{ hot_course.extra_info.title}}" href="{{ hot_course.extra_info.course_public_url }}">{{ hot_course.extra_info.title}}</a>
|
|
</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.register_button }}
|
|
{{ hot_course.extra_info.unsubscribe_button }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|