recettes/templates/base.html

23 lines
521 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>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<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>