mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 04:01:31 +08:00
8 lines
315 B
Plaintext
8 lines
315 B
Plaintext
<div class="layui-card">
|
|
<div class="layui-card-header">热门专题</div>
|
|
<div class="layui-card-body">
|
|
{% for topic in topics %}
|
|
<a class="layui-badge-rim topic-badge" href="{{ url({'for':'web.topic.show','id':topic.id}) }}">{{ topic.title }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div> |