1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2020-07-07 20:44:26 +08:00

14 lines
385 B
Plaintext

{% extends 'templates/full.volt' %}
{% block content %}
<div class="layui-collapse">
{% for help in helps %}
<div class="layui-colla-item">
<h2 class="layui-colla-title">{{ help.title }}</h2>
<div class="layui-colla-content layui-show">{{ help.content }}</div>
</div>
{% endfor %}
</div>
{% endblock %}