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 %}
|
|
|
|
<meta http-equiv="refresh" content="5;" />
|
|
|
|
{% endblock %}
|
2020-10-24 02:13:02 +00:00
|
|
|
|
|
|
|
<title>BAPSicle {% if data.ui_title %} | {{data.ui_title}}{% endif %}</title>
|
|
|
|
|
|
|
|
<!-- Custom fonts for this template-->
|
|
|
|
<link href="/static/vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
|
|
|
|
|
|
|
|
<!-- Custom styles for this template-->
|
|
|
|
<link href="/static/css/sb-admin-2.css" rel="stylesheet">
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
<body class="bg-gradient-primary">
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<!-- Outer Row -->
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
|
|
|
|
<div class="col-xl-10 col-lg-12 col-md-9">
|
|
|
|
<div class="mt-5">
|
|
|
|
<a href="/">
|
|
|
|
<h1 class="h1 text-light d-inline">BAPSicle</h1>
|
|
|
|
</a>
|
|
|
|
<div class="d-inline float-right">
|
|
|
|
<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" class="btn btn-user btn-outline-light btn-primary ml-4 {% if data.ui_page == 'config' %}active{% endif %}">
|
|
|
|
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>
|
|
|
|
<div class="card o-hidden border-0 shadow-lg my-3">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Bootstrap core JavaScript-->
|
|
|
|
<script src="vendor/jquery/jquery.min.js"></script>
|
|
|
|
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
|
|
|
|
|
|
<!-- Core plugin JavaScript-->
|
|
|
|
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
|
|
|
|
|
|
|
|
<!-- Custom scripts for all pages-->
|
|
|
|
<script src="js/sb-admin-2.js"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|