mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2024-10-21 16:27:15 +08:00
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html lang="en">
|
|||
|
|
|||
|
<head>
|
|||
|
<meta charset="UTF-8">
|
|||
|
<title>原神日历</title>
|
|||
|
<link rel="stylesheet" href="{{ css_path }}/iview.css" />
|
|||
|
<link rel="stylesheet" href="{{ css_path }}/index.css" />
|
|||
|
</head>
|
|||
|
|
|||
|
<body>
|
|||
|
|
|||
|
<div class="calendar-wapper">
|
|||
|
<div class="m-events-calendar">
|
|||
|
<div class="m-events-calendar">
|
|||
|
<div class="m-events-calenda__m-right">
|
|||
|
{% for item in body %}
|
|||
|
<div class="m-events-calendar__event-item-container" style="width: 535px; transform: translate(0px);">
|
|||
|
<div class="m-events-calendar__event-item-bg" style="background-image: url('{{ item.banner }}');">
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="m-events-calendar__event-item-tag" style="background-color: {{ item.color }};">
|
|||
|
|
|||
|
</div>
|
|||
|
<div class="m-events-calendar__event-item">
|
|||
|
<div class="m-events-calendar__event-item-info">
|
|||
|
<span class="m-events-calendar__event-item-act-name" title="{{ item.title }}">{{ item.title }}</span>
|
|||
|
<!-- 格式一:开始结束日期为不同的日期 -->
|
|||
|
<div class="m-events-calendar__event-item-text">{{ item.online }}</div>
|
|||
|
<!-- 格式二:开始结束日期为同一个 --><!--v-if--><!-- 格式三:当天为结束日期 --><!--v-if--><!-- 格式四:当天为结束日期,且已经结束 --><!--v-if-->
|
|||
|
</div><!-- 结束时间:天数等于1,切有结束时间 -->
|
|||
|
<div class="m-events-calendar__event-item-end-time">{{ item.time }}</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
{% endfor%}
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
|
|||
|
</body>
|
|||
|
|
|||
|
</html>
|