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