2024-07-11 18:26:21 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh-CN">
|
2024-08-22 22:50:18 +08:00
|
|
|
|
2024-07-11 18:26:21 +08:00
|
|
|
<head>
|
2024-08-22 22:50:18 +08:00
|
|
|
<meta charset="UTF-8" />
|
2024-07-11 18:26:21 +08:00
|
|
|
<title>Show Information</title>
|
2024-08-24 17:44:52 +08:00
|
|
|
<link rel="stylesheet" href="./css/style.css">
|
2024-07-11 18:26:21 +08:00
|
|
|
<style>
|
|
|
|
body {
|
2024-08-22 22:50:18 +08:00
|
|
|
background-image: url("{{ bgimage }}");
|
2024-07-11 18:26:21 +08:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
2024-08-22 22:50:18 +08:00
|
|
|
|
2024-07-11 18:26:21 +08:00
|
|
|
<body>
|
|
|
|
<div class="container">
|
2024-08-24 22:36:26 +08:00
|
|
|
<div class="header">展览列表</div>
|
2024-07-11 18:26:21 +08:00
|
|
|
{% for show in shows %}
|
|
|
|
<div class="content">
|
|
|
|
<div class="image">
|
2024-08-22 22:50:18 +08:00
|
|
|
<img src="{{ show.image_url }}" alt="Image" width="147px" height="199px" />
|
2024-07-11 18:26:21 +08:00
|
|
|
</div>
|
|
|
|
<div class="details">
|
2024-08-08 20:50:18 +08:00
|
|
|
<div class="title">{{ show.name }}</div>
|
|
|
|
<div class="venue_name">举办地点:{{ show.location }}</div>
|
|
|
|
{% if show.guests != "" %}
|
|
|
|
<div class="guests">嘉宾:{{ show.guests }}</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class="placeholder"></div>
|
2024-07-11 18:26:21 +08:00
|
|
|
<div class="sale_flag">{{ show.sale_flag }}</div>
|
2024-07-11 23:45:40 +08:00
|
|
|
<div class="id">ID:{{ show.id }}</div>
|
2024-09-17 19:20:46 +08:00
|
|
|
<div class="price">¥{{ show.price_low }} - {{ show.price_high }}</div>
|
2024-07-11 18:26:21 +08:00
|
|
|
<div class="wish">{{ show.wish }}人想去</div>
|
|
|
|
<div class="start-time">开始时间:{{ show.start_time }}</div>
|
|
|
|
<div class="end-time">结束时间:{{ show.end_time }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2024-07-13 20:38:28 +08:00
|
|
|
<div class="footer">
|
2024-08-22 22:50:18 +08:00
|
|
|
<div class="designer">Designed by Asankilp?</div>
|
|
|
|
<div class="total_results">
|
|
|
|
共 {{ global_data.total_results }} 个结果
|
|
|
|
</div>
|
|
|
|
<div class="pages">
|
|
|
|
{{ global_data.page }} / {{ global_data.total_pages }} 页
|
|
|
|
</div>
|
2024-07-13 20:38:28 +08:00
|
|
|
<div class="project_name">nonebot-plugin-acgnshow</div>
|
2024-08-24 17:44:52 +08:00
|
|
|
<div class="notice_text">本页信息仅供参考,具体内容请访问哔哩哔哩会员购,并自行检索实际信息</div>
|
2024-07-11 18:26:21 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
2024-08-22 22:50:18 +08:00
|
|
|
|
2024-09-17 19:20:46 +08:00
|
|
|
</html>
|