Files
procat2/templates/base.html
2019-03-12 23:00:56 -07:00

32 lines
732 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>TITLE</title>
<link rel="stylesheet" href="{% static 'main.css' %}">
</head>
<body>
{% block navigation %}
{% include "nav.html" %}
{% endblock%}
{% block messages %}
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endblock%}
{% block content %}
{% endblock %}
<script src="{% static 'app.js' %}"></script>
</body>
</html>