mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-28 13:21:37 +08:00
21 lines
467 B
Plaintext
21 lines
467 B
Plaintext
{% extends 'templates/full.volt' %}
|
|
|
|
{% block content %}
|
|
|
|
{% set courses_url = url({'for':'web.topic.courses','id':topic.id}) %}
|
|
|
|
<div class="topic-info">
|
|
<fieldset class="layui-elem-field layui-field-title">
|
|
<legend>{{ topic.title }}</legend>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div id="course-list" data-url="{{ courses_url }}"></div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block include_js %}
|
|
|
|
{{ js_include('web/js/topic.show.js') }}
|
|
|
|
{% endblock %} |