67 lines
1.6 KiB
HTML
67 lines
1.6 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>AcadeMon | {{ title }}</title>
|
|
|
|
<link rel="stylesheet" href="https://fontproxy.kumi.systems/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
|
|
<link rel="stylesheet" href="{% static "core/dist/css/all.min.css" %}">
|
|
<link rel="stylesheet" href="{% static "core/dist/css/adminlte.min.css" %}?v=3.2.0">
|
|
|
|
{% block styles %}
|
|
{% endblock %}
|
|
|
|
<body class="hold-transition sidebar-mini">
|
|
<div class="wrapper">
|
|
|
|
{% include "core/navbar.html" %}
|
|
{% include "core/sidebar.html" %}
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<div class="content-header">
|
|
<div class="container-fluid">
|
|
<div class="row mb-2">
|
|
<div class="col-sm-6">
|
|
<h1 class="m-0">{{ title }}</h1>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<ol class="breadcrumb float-sm-right">
|
|
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
|
<li class="breadcrumb-item active">{{ title }}</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<footer class="main-footer">
|
|
<strong>Copyright © 2022 <a href="https://kumi.systems">Kumi Systems e.U.</a>.</strong>
|
|
All rights reserved.
|
|
<div class="float-right d-none d-sm-inline-block">
|
|
<b>Version</b> 0.1
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
<script src="{% static "core/dist/js/jquery.min.js" %}"></script>
|
|
<script src="{% static "core/dist/js/bootstrap.bundle.min.js" %}"></script>
|
|
<script src="{% static "core/dist/js/adminlte.js" %}?v=3.2.0"></script>
|
|
|
|
{% block scripts %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|