recettes/templates/base.html

20 lines
468 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Recettes {% block title %}page title{% endblock %}</title>
<link rel="stylesheet" href="{{ STATIC_URL }}css/main.css">
{% block extrahead %}
{% endblock %}
</head>
<body>
<div id="content">
{% block content %}
{% endblock %}
</div>
<hr>
<div style="text-align: right;"><a href="{% url 'admin:index' %}">Gestion</a></div>
</body>
</html>