mirror of
https://gitlab.com/JKANetwork/powerfulcomputermanager.git
synced 2026-02-22 04:53:47 +01:00
85 lines
3.1 KiB
Cheetah
85 lines
3.1 KiB
Cheetah
{# -*- coding: utf-8 -*- #}
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<!--<link rel="icon" href="/docs/4.0/assets/img/favicons/favicon.ico">-->
|
|
|
|
<title>{{title}} - Powerful Computer Manager</title>
|
|
|
|
<link rel="canonical" href="index.html">
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link href="{{ url_for('static', filename='css/dashboard.css') }}" rel="stylesheet">
|
|
|
|
<!-- Jquery JS -->
|
|
<script src="{{ url_for('static', filename='js/jquery-3.2.1.slim.min.js') }}"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0">
|
|
<a class="navbar-brand col-sm-3 col-md-2 mr-0" href="#">Company name</a>
|
|
<input class="form-control form-control-dark w-100" type="text" placeholder="Search" aria-label="Search">
|
|
<ul class="navbar-nav px-3">
|
|
<li class="nav-item text-nowrap">
|
|
<a class="nav-link" href="#">Sign out</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<nav class="col-md-2 d-none d-md-block bg-light sidebar">
|
|
<div class="sidebar-sticky pt-4">
|
|
<ul class="nav flex-column pt-4">
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.path == "/admin/" or request.path == "/admin" %}active{% endif %}" href="/admin">
|
|
<span data-feather="home"></span>
|
|
Dashboard
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link {% if request.path == "/admin/groups" or request.path == "/admin/group" %}active{% endif %}" href="/admin/groups">
|
|
<span data-feather="file"></span>
|
|
Groups
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
|
|
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pb-2 mb-3 border-bottom">
|
|
<h1 class="h2">{{title}}</h1>
|
|
<div class="btn-toolbar mb-2 mb-md-0">
|
|
</div>
|
|
</div>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="{{ url_for('static', filename='js/popper.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
|
|
|
|
<!-- Icons -->
|
|
<script src="{{ url_for('static', filename='js/feather-4.24.1.min.js') }}"></script>
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
|
|
<!-- Graphs -->
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|