1234567891011121314151617181920212223242526 |
- {% load static %}
- <!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.0">
- <link rel="shortcut icon" href="{% static 'sharix_admin/img/logo.png' %}">
- <link rel="stylesheet" href="{% static 'sharix_admin/css/bootstrap.min.css' %}">
- <link rel="stylesheet" href="{% static 'drf-yasg/service_type.css' %}">
- <link rel="stylesheet" href="{% static 'drf-yasg/colors2.css' %}">
- <link rel="stylesheet" href="{% static 'sharix_admin/css/style.css' %}">
- <link href="{% static 'fontawesomefree/css/fontawesome.css' %}" rel="stylesheet" type="text/css">
- <link href="{% static 'fontawesomefree/css/brands.css' %}" rel="stylesheet" type="text/css">
-
- <title>{{ title }}</title>
- </head>
- <body>
- {% block content %}{% endblock %}
-
- <script src="{% static 'sharix_admin/js/bootstrap.bundle.min.js' %}"></script>
- </body>
- </html>
|