mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 12:23:06 +08:00
19 lines
403 B
Plaintext
19 lines
403 B
Plaintext
{% extends 'templates/main.volt' %}
|
|
|
|
{% block content %}
|
|
|
|
{% set courses_url = url({'for':'desktop.topic.courses','id':topic.id}) %}
|
|
|
|
<div class="topic-info">
|
|
<div class="topic-title">{{ topic.title }}</div>
|
|
</div>
|
|
|
|
<div id="course-list" data-url="{{ courses_url }}"></div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block include_js %}
|
|
|
|
{{ js_include('desktop/js/topic.show.js') }}
|
|
|
|
{% endblock %} |