PaiGram/resources/genshin/player_card/stats.html
洛水居室 a046b22f3a
添加角色卡片插件
Co-authored-by: Li Chuangbo <im@chuangbo.li>
Co-authored-by: xtaodada <xtao@xtaolink.cn>
Co-authored-by: luoshuijs <luoshuijs@outlook.com>
2022-09-09 22:50:17 +08:00

11 lines
288 B
HTML

<div class="rounded-lg overflow-hidden bg-black bg-opacity-20">
{% for (name, value) in stats %}
<div
class="flex justify-between px-10 py-1.5 even:bg-black even:bg-opacity-30"
>
<div>{{ name }}</div>
<div class="italic">{{ value }}</div>
</div>
{% endfor %}
</div>