2020-10-24 02:13:02 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
2020-10-24 13:39:09 +00:00
|
|
|
{% block head %}
|
|
|
|
{% endblock %}
|
2020-10-24 02:13:02 +00:00
|
|
|
|
2021-04-19 14:45:20 +00:00
|
|
|
<title>BAPSicle{% if data.ui_title %} | {{data.ui_title}}{% endif %}</title>
|
2020-10-24 02:13:02 +00:00
|
|
|
|
|
|
|
<!-- Custom fonts for this template-->
|
|
|
|
<link href="/static/vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
|
2021-08-16 23:14:18 +00:00
|
|
|
<link href="/static/vendor/fonts/nunito.css" rel="stylesheet">
|
2020-10-24 02:13:02 +00:00
|
|
|
|
|
|
|
<!-- Custom styles for this template-->
|
|
|
|
<link href="/static/css/sb-admin-2.css" rel="stylesheet">
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
<body class="bg-gradient-primary">
|
|
|
|
|
2021-08-17 22:05:43 +00:00
|
|
|
<div class="container mt-5">
|
|
|
|
|
|
|
|
<div class="d-flex justify-content-between">
|
|
|
|
<a href="/">
|
|
|
|
<h1 class="h1 text-light">BAPSicle</h1>
|
2020-10-24 02:13:02 +00:00
|
|
|
</a>
|
2021-08-17 22:05:43 +00:00
|
|
|
{% if data.ui_menu is undefined or data.ui_menu is true %}
|
|
|
|
<div>
|
|
|
|
<a href="/status" class="btn btn-user btn-outline-light btn-primary ml-4 {% if data.ui_page == 'status' %}active{% endif %}">
|
|
|
|
Status
|
|
|
|
</a>
|
|
|
|
<a href="/config/player" class="btn btn-user btn-outline-light btn-primary ml-4 {% if data.ui_page == 'config' %}active{% endif %}">
|
|
|
|
Player Config
|
|
|
|
</a>
|
|
|
|
<a href="/config/server" class="btn btn-user btn-outline-light btn-primary ml-4 {% if data.ui_page == 'server' %}active{% endif %}">
|
|
|
|
Server Config
|
|
|
|
</a>
|
|
|
|
<a href="/logs" class="btn btn-user btn-outline-light btn-primary ml-4 {% if data.ui_page == 'logs' %}active{% endif %}">
|
|
|
|
Logs
|
|
|
|
</a>
|
|
|
|
</div>
|
2020-10-24 02:13:02 +00:00
|
|
|
</div>
|
2021-04-18 21:23:25 +00:00
|
|
|
{% endif %}
|
2020-10-24 02:13:02 +00:00
|
|
|
<div class="card o-hidden border-0 shadow-lg my-3">
|
2020-10-24 14:04:33 +00:00
|
|
|
{% block content %}
|
2021-04-17 20:28:57 +00:00
|
|
|
|
2020-10-24 14:04:33 +00:00
|
|
|
<div class="card-body p-0">
|
|
|
|
<!-- Nested Row within Card Body -->
|
|
|
|
<div class="row">
|
2021-08-17 22:05:43 +00:00
|
|
|
<div class="col">
|
2020-10-24 14:04:33 +00:00
|
|
|
<div class="px-4 pt-5 pb-3">
|
|
|
|
<div class="text-center">
|
|
|
|
<h2 class="h3 text-gray-900">{{ data.ui_title }}</h2>
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
</div>
|
|
|
|
<div class="px-4 pb-4">
|
|
|
|
{% block content_inner %}
|
|
|
|
<div class="py-4 text-center">
|
|
|
|
<h2>Woops.</h2>
|
|
|
|
<p>No content defined in <code>content</code> or <code>content_inner</code> block.</p>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-17 20:28:57 +00:00
|
|
|
|
2020-10-24 14:04:33 +00:00
|
|
|
{% endblock %}
|
2020-10-24 02:13:02 +00:00
|
|
|
</div>
|
2021-04-17 20:28:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-10-24 02:13:02 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|