mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-29 05:41:37 +08:00
19 lines
427 B
Plaintext
19 lines
427 B
Plaintext
{% extends 'templates/full.volt' %}
|
|
|
|
{% block content %}
|
|
|
|
{% set courses_url = url({'for':'web.topic.courses','id':topic.id}) %}
|
|
|
|
<div class="topic-info container">
|
|
<h3 class="title" title="{{ topic.summary|e }}">{{ topic.title }}</h3>
|
|
</div>
|
|
|
|
<div id="course-list" data-url="{{ courses_url }}"></div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block include_js %}
|
|
|
|
{{ js_include('web/js/topic.show.js') }}
|
|
|
|
{% endblock %} |