54 lines
1.5 KiB
HTML
54 lines
1.5 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<title>{% block title %}DjangoSMS{% endblock title %}</title>
|
|
|
|
<link rel="shortcut icon" href="{% static 'img/favicon.png' %}" type="image/x-icon">
|
|
|
|
<!-- Fontawesome icons -->
|
|
<link rel="stylesheet" type="text/css" href="{% static 'vendor/fontawesome-6.5.1/css/all.min.css' %}">
|
|
|
|
<!-- Bootstrap5 -->
|
|
<link rel="stylesheet" type="text/css" href="{% static 'vendor/bootstrap-5.3.2/css/bootstrap.min.css' %}">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/style.min.css' %}">
|
|
|
|
<!-- <script src="https://js.stripe.com/v3/"></script> -->
|
|
{% block header %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block sidebar %}
|
|
{% include 'aside.html' %}
|
|
{% endblock %}
|
|
|
|
{% block maincontent %}
|
|
<div id="main">
|
|
{% block topbar %}
|
|
{% include 'navbar.html' %}
|
|
{% endblock %}
|
|
|
|
<div class="container-fluid" id="main-content">
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|
|
<script type="text/javascript" src="{% static 'vendor/jquery-3.7.1/jquery-3.7.1.min.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'vendor/bootstrap-5.3.2/js/bootstrap.bundle.min.js' %}"></script>
|
|
|
|
<script type="text/javascript" src="{% static 'js/main.js' %}"></script>
|
|
|
|
{% block js %}
|
|
{% endblock js %}
|
|
</body>
|
|
|
|
</html>
|