2020-01-25 20:32:24 +08:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<!-- Required meta tags -->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
{{ bootstrap.load_css() }}
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/lookforward@0.1.1/css/lookforward.min.css">
|
2020-01-29 14:31:01 +08:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}"/>
|
2020-01-25 20:32:24 +08:00
|
|
|
|
|
|
|
<title>Star Yuuki BOT - WebAdmin</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2020-01-29 14:31:01 +08:00
|
|
|
{% from 'bootstrap/nav.html' import render_nav_item %}
|
2020-01-25 20:32:24 +08:00
|
|
|
|
2020-01-29 14:31:01 +08:00
|
|
|
<div id="header"></div>
|
2020-01-25 20:32:24 +08:00
|
|
|
|
2020-01-29 14:31:01 +08:00
|
|
|
<main role="main" class="container">
|
|
|
|
<div class="my-3 p-3 bg-white rounded shadow-sm">
|
|
|
|
<h6 class="border-bottom border-gray pb-2 mb-0">Recent updates</h6>
|
|
|
|
<div class="media text-muted pt-3">
|
|
|
|
<svg class="bd-placeholder-img mr-2 rounded" width="32" height="32" xmlns="http://www.w3.org/2000/svg"
|
|
|
|
preserveAspectRatio="xMidYMid slice" focusable="false" role="img" aria-label="Placeholder: 32x32">
|
|
|
|
<title>Event</title>
|
|
|
|
<rect width="100%" height="100%" fill="#007bff"/>
|
|
|
|
<text x="50%" y="50%" fill="#007bff"
|
|
|
|
dy=".3em">32x32
|
|
|
|
</text>
|
|
|
|
</svg>
|
|
|
|
<p class="media-body pb-3 mb-0 small lh-125 border-bottom border-gray">
|
|
|
|
<strong class="d-block text-gray-dark">[Kick Event]</strong>
|
|
|
|
Yuuki
|
|
|
|
</p>
|
2020-01-25 20:32:24 +08:00
|
|
|
</div>
|
2020-01-29 14:31:01 +08:00
|
|
|
<div class="media text-muted pt-3">
|
|
|
|
<svg class="bd-placeholder-img mr-2 rounded" width="32" height="32" xmlns="http://www.w3.org/2000/svg"
|
|
|
|
preserveAspectRatio="xMidYMid slice" focusable="false" role="img" aria-label="Placeholder: 32x32">
|
|
|
|
<title>Event</title>
|
|
|
|
<rect width="100%" height="100%" fill="#e83e8c"/>
|
|
|
|
<text x="50%" y="50%" fill="#e83e8c"
|
|
|
|
dy=".3em">32x32
|
|
|
|
</text>
|
|
|
|
</svg>
|
|
|
|
<p class="media-body pb-3 mb-0 small lh-125 border-bottom border-gray">
|
|
|
|
<strong class="d-block text-gray-dark">[Cancel Event]</strong>
|
|
|
|
Yuuki
|
|
|
|
</p>
|
2020-01-25 20:32:24 +08:00
|
|
|
</div>
|
2020-01-29 14:31:01 +08:00
|
|
|
<div class="media text-muted pt-3">
|
|
|
|
<svg class="bd-placeholder-img mr-2 rounded" width="32" height="32" xmlns="http://www.w3.org/2000/svg"
|
|
|
|
preserveAspectRatio="xMidYMid slice" focusable="false" role="img" aria-label="Placeholder: 32x32">
|
|
|
|
<title>Event</title>
|
|
|
|
<rect width="100%" height="100%" fill="#6f42c1"/>
|
|
|
|
<text x="50%" y="50%" fill="#6f42c1"
|
|
|
|
dy=".3em">32x32
|
|
|
|
</text>
|
|
|
|
</svg>
|
|
|
|
<p class="media-body pb-3 mb-0 small lh-125 border-bottom border-gray">
|
|
|
|
<strong class="d-block text-gray-dark">[Join Event]</strong>
|
|
|
|
Yuuki
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<small class="d-block text-right mt-3">
|
|
|
|
<a href="/events" target="_blank">All updates</a>
|
|
|
|
</small>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
2020-01-25 20:32:24 +08:00
|
|
|
|
2020-01-29 14:31:01 +08:00
|
|
|
<!-- Optional JavaScript -->
|
|
|
|
{{ bootstrap.load_js() }}
|
|
|
|
<script src="{{ url_for('static', filename='header.js') }}"></script>
|
|
|
|
<script src="https://unpkg.com/lookforward@0.1.1/js/lookforward.min.js"></script>
|
|
|
|
<script>
|
2020-01-25 20:32:24 +08:00
|
|
|
new LookForward('.js-lookforward');
|
2020-01-29 14:31:01 +08:00
|
|
|
|
|
|
|
</script>
|
2020-01-25 20:32:24 +08:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|