32 lines
985 B
HTML
32 lines
985 B
HTML
{% load staticfiles %}
|
|
{% load i18n %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ settings.CUSTOMER_NAME }} ProCatalog: {% block title %}{% endblock %}</title>
|
|
<link href="{% static 'img/favicon.ico' %}" rel="shortcut icon" />
|
|
<link rel="stylesheet" href="{% static 'css/uikit.min.css' %}" />
|
|
<link rel="stylesheet" href="{% static 'css/main.css' %}">
|
|
<script src="{% static 'js/uikit.min.js' %}"></script>
|
|
<script src="{% static 'js/uikit-icons.min.js' %}"></script>
|
|
</head>
|
|
<body>
|
|
{% include "nav.html" %}
|
|
|
|
{% if messages %}
|
|
<ul class="messages">
|
|
{% for message in messages %}
|
|
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
{# <script src="{% static 'app.js' %}"></script> #}
|
|
</body>
|
|
</html>
|