23 lines
		
	
	
	
		
			541 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			541 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load static %}
 | 
						|
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
    <title>{% block title %}page title{% endblock %}</title>
 | 
						|
    <link rel="stylesheet" href="{% static 'css/main.css' %}">
 | 
						|
    {% block extrahead %}
 | 
						|
    {% endblock %}
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
 <div id="content">
 | 
						|
 {% block content %}
 | 
						|
 {% endblock %}
 | 
						|
 </div>
 | 
						|
 <hr>
 | 
						|
 {% block footer %}
 | 
						|
 <div style="text-align: right;"><a href="{% url 'admin:index' %}">Gestion</a></div>
 | 
						|
 {% endblock %}
 | 
						|
</body>
 | 
						|
</html>
 |