Project_Camper/vagus/template/index.html

20 lines
409 B
HTML
Raw Normal View History

2020-12-27 01:33:07 +01:00
{% load static %}
2020-12-07 21:41:55 +01:00
<!doctype html>
<html>
<head>
2020-12-27 01:33:07 +01:00
<link rel="stylesheet" href="{% static 'css/style.css' %}">
2020-12-07 21:41:55 +01:00
</head>
<body>
2020-12-27 01:33:07 +01:00
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
2020-12-07 21:41:55 +01:00
{% block content %}
{% endblock %}
</body>
</html>