Files
vikileo-shop/templates/components/_base.html
2024-05-10 09:38:31 +03:00

26 lines
757 B
HTML

{% load compress %}
{% load static %}
<!DOCTYPE html>
<html lang="ru">
<head>
{% include 'components/seo.html' %}
<title>{{ title }}</title>
<!-- styles -->
{% compress css %}
<link rel="stylesheet" href="{% static 'src/output.css' %}">
{% endcompress %}
{% include 'components/css.html' %}
<!-- script -->
{% include 'components/script.html' %}
</head>
<body class="antialiased bg-gray-50 dark:bg-gray-900">
{% include 'components/navbars/nav.html' %}
{% include 'components/navbars/sidebar.html' %}
<div class="container mx-auto mt-4">
{% block content %}
{% endblock content %}
</div>
<!-- script -->
{% include 'components/footer/script.html' %}
</body>
</html>