PamGram/resources/starrail/abyss/overview.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.3 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;
}
</style>
</head>
<body>
<div class="container">
{% if title == '混沌回忆' %}
{% set overview_class = 'overview-abyss' %}
{% else %}
{% set overview_class = 'overview-abyss-story' %}
{% endif %}
<div class="overview {{ overview_class }}">
<div class="title">{{ title }}挑战回顾</div>
2023-05-07 09:51:03 +00:00
<div class="summarize">
<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>
</div>
</div>
</div>
</body>
</html>