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
+49
View File
@@ -0,0 +1,49 @@
{# template-title: 小药表 #}
<div class="container">
<h1>心法小药表</h1>
<table>
<thead>
<tr>
<th rowspan="2">心法</th>
<th colspan="4">紫色小药</th>
<th colspan="4">蓝色小药</th>
</tr>
<tr>
<th>增强食品</th>
<th>增强药品</th>
<th>辅助食品</th>
<th>辅助药品</th>
<th>增强食品</th>
<th>增强药品</th>
<th>辅助食品</th>
<th>辅助药品</th>
</tr>
</thead>
<tbody>
{% for m in items %}
<tr>
<td class="kungfu">{{ m.kungfu }}</td>
<!-- 紫色 -->
<td class="purple">{{ m.purple["增强食品"] }}</td>
<td class="purple">{{ m.purple["增强药品"] }}</td>
<td class="purple">{{ m.purple["辅助食品"] }}</td>
<td class="purple">{{ m.purple["辅助药品"] }}</td>
<!-- 蓝色 -->
<td class="blue">{{ m.blue["增强食品"] }}</td>
<td class="blue">{{ m.blue["增强药品"] }}</td>
<td class="blue">{{ m.blue["辅助食品"] }}</td>
<td class="blue">{{ m.blue["辅助药品"] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>