Files
astrbot_plugin_jx3/templates/pages/zhueevent.html
T
2026-08-04 02:08:49 +08:00

29 lines
818 B
HTML

{# template-title: 诛恶事件 #}
{# template-components: data-table #}
<div class="container data-page">
<h1>诛恶事件</h1>
<div class="data-page__meta">更新时间:{{ update_time }}</div>
<table class="data-table">
<thead>
<tr>
<th>服务器</th>
<th>地图</th>
<th>时间</th>
</tr>
</thead>
<tbody>
{% for item in items %}
<tr>
<td class="data-cell--accent data-cell--wide data-cell--center data-cell--nowrap">{{ item.server }}</td>
<td class="data-cell--name data-cell--wrap">{{ item.mapName }}</td>
<td class="data-cell--time">{{ item.time }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>