1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2020-09-17 21:29:29 +08:00

11 lines
424 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':'home.topic.show','id':topic.id}) %}
<a class="layui-badge-rim topic-badge" href="{{ topic_url }}">{{ topic.title }}</a>
{% endfor %}
</div>
</div>
{% endif %}