mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 15:31:51 +08:00
13d6aaab78
- Fix chart in Ai want U - Mute music on song select with Q - Do not scroll song select background when the tab is not active - Fix very short inputs not being recognized - Fix sound being muted when playing the same song again - Fix multiplayer when audio latency is set - Fix getting stuck when imported song cannot be restarted - Fix 2P cursor when ura is selected by both players - Add KeyboardEvent.key to browser tests - Separate buttons like Shift+Left into two on the How to Play page - Change focused button on the custom songs screen to the first one available - Add favicon to the admin page - Display the id on the admin new song page
26 lines
790 B
HTML
26 lines
790 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Taiko Web Admin</title>
|
|
<link rel="icon" href="{{config.assets_baseurl}}img/favicon.png" type="image/png">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet">
|
|
<link href="/src/css/admin.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="nav">
|
|
<a href="/admin/songs">Songs</a>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|