mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 20:52:44 +08:00
17 lines
340 B
Plaintext
17 lines
340 B
Plaintext
{% extends 'templates/base.volt' %}
|
|
|
|
{% block content %}
|
|
|
|
{{ partial('partials/macro_course') }}
|
|
|
|
{{ partial('course/list_filter') }}
|
|
|
|
<div class="course-list clearfix">
|
|
{% for item in pager.items %}
|
|
{{ course_card(item) }}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{{ partial('partials/pager') }}
|
|
|
|
{% endblock %} |