2023-04-23 16:08:01 +00:00
|
|
|
{% load static %}
|
2023-05-30 09:30:00 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en" data-theme="light">
|
|
|
|
|
2023-04-23 16:08:01 +00:00
|
|
|
<head>
|
2023-05-30 09:30:00 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
|
|
|
<meta name="color-scheme" content="dark light">
|
|
|
|
<title>{% block title %}{% endblock title %} |</title>
|
|
|
|
<!-- App favicon -->
|
|
|
|
<link rel="shortcut icon" href="{% static 'images/favicon.ico'%}">
|
|
|
|
{% block css %}
|
|
|
|
<!-- Styles -->
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static '/css/main.css'%}">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static '/css/utility.css'%}">
|
|
|
|
<!-- Bootstrap Icons -->
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css">
|
|
|
|
<!-- Fonts -->
|
|
|
|
<link rel="stylesheet" href="https://api.fontshare.com/v2/css?f=satoshi@900,700,500,300,401,400&display=swap">
|
|
|
|
{% endblock css %}
|
2023-04-23 16:08:01 +00:00
|
|
|
</head>
|
|
|
|
|
2023-05-30 09:30:00 +00:00
|
|
|
|
|
|
|
<body class="bg-surface-secondary">
|
2023-04-23 16:08:01 +00:00
|
|
|
<!-- Begin page -->
|
|
|
|
<div id="layout-wrapper">
|
|
|
|
{% block header %}
|
|
|
|
{% include "partials/topbar.html" %}
|
|
|
|
{% endblock header %}
|
|
|
|
{% block sidebar %}
|
|
|
|
{% include "partials/sidebar.html" %}
|
|
|
|
{% endblock sidebar %}
|
|
|
|
{% block content %}
|
|
|
|
{% block pagetitle %}
|
|
|
|
{% endblock pagetitle %}
|
|
|
|
{% endblock content %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% block extra_content %}
|
|
|
|
{% endblock extra_content %}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|