recettes/templates/base.html

24 lines
550 B
HTML
Raw Normal View History

2018-05-26 16:55:07 +02:00
{% load static %}
2018-05-26 16:01:04 +02:00
<!DOCTYPE html>
<html>
<head>
2020-09-11 18:35:57 +02:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2018-05-26 16:01:04 +02:00
<title>Recettes {% block title %}page title{% endblock %}</title>
2018-05-26 16:55:07 +02:00
<link rel="stylesheet" href="{% static 'css/main.css' %}">
2018-05-26 16:01:04 +02:00
{% block extrahead %}
{% endblock %}
</head>
<body>
<div id="content">
{% block content %}
{% endblock %}
</div>
<hr>
2018-05-26 16:55:07 +02:00
{% block footer %}
2018-05-26 16:01:04 +02:00
<div style="text-align: right;"><a href="{% url 'admin:index' %}">Gestion</a></div>
2018-05-26 16:55:07 +02:00
{% endblock %}
2018-05-26 16:01:04 +02:00
</body>
</html>