38 lines
1004 B
HTML
38 lines
1004 B
HTML
{% load static %}
|
|
{% include "pxy_dashboard/partials/main.html" %}
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>
|
|
{% block title %}{% endblock title %} | Polisplexity Dashboard
|
|
</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta content="A fully featured admin theme which can be used to build CRM, CMS, etc." name="description" />
|
|
<meta content="Coderthemes" name="author" />
|
|
|
|
<!-- App favicon -->
|
|
<link rel="shortcut icon" href="{% static 'dashboard/images/favicon.ico'%}" />
|
|
|
|
{% block css %}
|
|
|
|
{% block extra_css %} {% endblock extra_css %}
|
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
|
{% endblock css %}
|
|
|
|
</head>
|
|
|
|
<body {% block body_attr%}{% endblock %}>
|
|
|
|
{% block page_content %}{% endblock %}
|
|
|
|
<!-- JAVASCRIPT -->
|
|
{% block javascript %}
|
|
|
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
|
|
|
{% block extra_js %} {% endblock extra_js %}
|
|
|
|
{% endblock javascript %}
|
|
</body>
|
|
|
|
</html> |