29 lines
784 B
HTML
29 lines
784 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--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>
|