mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 04:45:27 +00:00
🐛 fix abyss HTML template
Co-authored-by: zhxy-CN <admin@owo.cab>
This commit is contained in:
parent
764834de2f
commit
bb260260cd
@ -67,18 +67,30 @@
|
||||
<img src="{{ data.ranks.strongest_strike[0].side_icon }}" alt=""/>
|
||||
</div>
|
||||
<div class="rank">
|
||||
<span>最多承伤: {{ data.ranks.most_damage_taken[0].value }}</span>
|
||||
<img src="{{ data.ranks.most_damage_taken[0].side_icon }}" alt=""/>
|
||||
{% if data.ranks.most_damage_taken is defined and data.ranks.most_damage_taken|length > 0 %}
|
||||
<span>最多承伤: {{ data.ranks.most_damage_taken[0].value }}</span>
|
||||
<img src="{{ data.ranks.most_damage_taken[0].side_icon }}" alt=""/>
|
||||
{% else %}
|
||||
<span>最多承伤: </span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div style="background-color: rgb(61 76 86 / 60%);">
|
||||
<div class="rank">
|
||||
<span>元素爆发: {{ data.ranks.most_bursts_used[0].value }}</span>
|
||||
<img src="{{ data.ranks.most_bursts_used[0].side_icon }}" alt=""/>
|
||||
{% if data.ranks.most_bursts_used is defined and data.ranks.most_bursts_used|length > 0 %}
|
||||
<span>元素爆发: {{ data.ranks.most_bursts_used[0].value }}</span>
|
||||
<img src="{{ data.ranks.most_bursts_used[0].side_icon }}" alt=""/>
|
||||
{% else %}
|
||||
<span>元素爆发: </span>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="rank">
|
||||
<span>元素战技: {{ data.ranks.most_skills_used[0].value }}</span>
|
||||
<img src="{{ data.ranks.most_skills_used[0].side_icon }}" alt=""/>
|
||||
{% if data.ranks.most_skills_used is defined and data.ranks.most_skills_used|length > 0 %}
|
||||
<span>元素战技: {{ data.ranks.most_skills_used[0].value }}</span>
|
||||
<img src="{{ data.ranks.most_skills_used[0].side_icon }}" alt=""/>
|
||||
{% else %}
|
||||
<span>元素战技: </span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user