PamGram/resources/starrail/abyss/overview.html

73 lines
2.1 KiB
HTML
Raw Normal View History

2023-05-07 09:51:03 +00:00
<!DOCTYPE html>
<html lang="zh-ch">
<head>
<meta charset="UTF-8">
<title>overview</title>
<link type="text/css" href="./style.css" rel="stylesheet"/>
<link type="text/css" href="../../styles/public.css" rel="stylesheet"/>
<style>
body {
margin: 0;
padding: 0;
}
.overview {
border-radius: unset;
}
{% if title == '末日幻影' %}
.boss-upper::before {
background-image: url("{{ upper_boss.icon }}");
}
.boss-lower::before {
background-image: url("{{ lower_boss.icon }}");
}
{% endif %}
2023-05-07 09:51:03 +00:00
</style>
</head>
<body>
<div class="container">
{% set summarize_class = '' %}
{% if title == '混沌回忆' %}
{% set overview_class = 'overview-abyss' %}
{% endif %}
{% if title == '虚构叙事' %}
{% set overview_class = 'overview-abyss-story' %}
{% endif %}
{% if title == '末日幻影' %}
{% set overview_class = 'overview-abyss-boss' %}
{% set summarize_class = 'summarize-boss' %}
{% endif %}
<div class="overview {{ overview_class }}">
<div class="title">{{ title }}挑战回顾</div>
<div class="summarize {{ summarize_class }}">
2023-05-07 09:51:03 +00:00
<div>
<div>UID: {{ uid }}</div>
<div class="star">
<span>{{ stars }}</span>
</div>
</div>
<div>
<div>本期开始: {{ start_time }}</div>
2023-05-07 09:51:03 +00:00
<div>最深抵达: {{ max_floor }}</div>
</div>
<div>
<div>本期结束: {{ end_time }}</div>
2023-05-07 09:51:03 +00:00
<div>战斗次数: {{ total_battles }}</div>
</div>
{% if title == '末日幻影' %}
<div>
<div class="star boss-upper">
<span>{{ upper_boss.name_mi18n }}</span>
</div>
<div class="star boss-lower">
<span>{{ lower_boss.name_mi18n }}</span>
</div>
</div>
{% endif %}
2023-05-07 09:51:03 +00:00
</div>
</div>
</div>
</body>
</html>