PaiGram/resources/genshin/player_card/score.jinja2
洛水居室 eed418477f
♻️ Rename HTML templates to use .jinja2 extension
Previously, all templates were named with the .html extension, which caused problems for editors to recognize the Jinja2 syntax used in them. In this commit, all templates have been renamed to use the .jinja2 extension to better reflect their use of Jinja2 and to improve editor recognition.
2023-05-09 19:19:32 +08:00

13 lines
575 B
Django/Jinja

<div class="flex-1 flex justify-evenly bg-black bg-opacity-20 rounded-lg">
<div class="flex flex-col items-center justify-center space-y-2">
<div class="text-5xl italic text-shadow {{ artifact_total_score_class }}">
{{ artifact_total_score_label }}
</div>
<div class="text-base text-neutral-400">圣遗物评级</div>
</div>
<div class="flex flex-col items-center justify-center space-y-2">
<div class="text-5xl italic text-shadow">{{ artifact_total_score }}</div>
<div class="text-base text-neutral-400">圣遗物评分</div>
</div>
</div>