mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-27 21:10:24 +08:00
14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
<table class="layui-table">
|
|
<colgroup>
|
|
<col width="80%">
|
|
<col>
|
|
</colgroup>
|
|
<tbody>
|
|
{% for release in releases %}
|
|
<tr>
|
|
<td><a href="{{ release.url }}" target="_blank">{{ release.title }}</a></td>
|
|
<td>{{ release.date }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table> |