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>
<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 %}