base.html: add title block. cleanup others.

This commit is contained in:
Seth Ladygo
2019-03-13 17:48:52 -07:00
parent 4d53b7c659
commit 6ed4792a21

View File

@ -5,15 +5,12 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>TITLE</title>
<link rel="stylesheet" href="{% static 'main.css' %}"> <link rel="stylesheet" href="{% static 'main.css' %}">
<title>{% block title %}ProCatalog{% endblock %}</title>
</head> </head>
<body> <body>
{% block navigation %}
{% include "nav.html" %} {% include "nav.html" %}
{% endblock%}
{% block messages %}
{% if messages %} {% if messages %}
<ul class="messages"> <ul class="messages">
{% for message in messages %} {% for message in messages %}
@ -21,7 +18,6 @@
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}
{% endblock%}
{% block content %} {% block content %}
{% endblock %} {% endblock %}