mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
fd32ecb004
- Base directory can be changed in config.py from the default / to, for example, /taiko-web/ - See tools/nginx_subdir.conf for an example nginx configuration with a base directory - Custom error pages can be used, they can be set in config.py
27 lines
890 B
HTML
27 lines
890 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="{{config.basedir}}src/css/admin.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="nav">
|
|
<a href="{{config.basedir}}admin/songs">Songs</a>
|
|
<a href="{{config.basedir}}admin/users">Users</a>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|