base.html: add title block. cleanup others.
This commit is contained in:
@ -5,15 +5,12 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>TITLE</title>
|
||||
<link rel="stylesheet" href="{% static 'main.css' %}">
|
||||
<title>{% block title %}ProCatalog{% endblock %}</title>
|
||||
</head>
|
||||
<body>
|
||||
{% block navigation %}
|
||||
{% include "nav.html" %}
|
||||
{% endblock%}
|
||||
|
||||
{% block messages %}
|
||||
{% if messages %}
|
||||
<ul class="messages">
|
||||
{% for message in messages %}
|
||||
@ -21,7 +18,6 @@
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endblock%}
|
||||
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user