This commit is contained in:
qsc
2026-08-04 00:17:25 +08:00
parent 4b6c86a32b
commit a4a01dc16d
138 changed files with 6328 additions and 8130 deletions
+38
View File
@@ -0,0 +1,38 @@
{# template-title: 区服各平台金价 #}
<div class="container">
<h1>区服各平台金价</h1>
<table>
<thead>
<tr>
<th>服务器</th>
<th>贴吧</th>
<th>万宝楼</th>
<th>dd373</th>
<th>uu898</th>
<th>5173</th>
<th>7881</th>
<th>时间</th>
</tr>
</thead>
<tbody>
{% for m in items %}
<tr>
<td>{{ m.server }}</td>
<td>{{ m.tieba }}</td>
<td>{{ m.wanbaolou }}</td>
<td>{{ m.dd373 }}</td>
<td>{{ m.uu898 }}</td>
<td>{{ m.5173 }}</td>
<td>{{ m.7881 }}</td>
<td>{{ m.date }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>