28 lines
680 B
HTML
28 lines
680 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">
|
|
<link rel="stylesheet" href="{% static 'main.css' %}">
|
|
<title>{% block title %}ProCatalog{% endblock %}</title>
|
|
</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>
|