2016-05-26 01:09:31 +02:00
|
|
|
{% load staticfiles %}
|
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr">
|
|
|
|
<head>
|
|
|
|
<title>{{ site.name }}</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
2016-09-05 23:47:16 +02:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2017-01-28 19:46:56 +01:00
|
|
|
|
2017-05-26 00:58:59 +02:00
|
|
|
{# CSS #}
|
2019-02-12 17:40:03 +01:00
|
|
|
<link type="text/css" rel="stylesheet" href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}" />
|
2019-02-13 16:50:55 +01:00
|
|
|
<link type="text/css" rel="stylesheet" href="{% static 'fonts/Roboto/roboto.css' %}" />
|
|
|
|
<link type="text/css" rel="stylesheet" href="{% static 'fonts/Dosis/dosis.css' %}" />
|
2019-02-12 18:21:39 +01:00
|
|
|
<link type="text/css" rel="stylesheet" href="{% static 'gestioncof/css/cof.css' %}" />
|
2020-07-19 16:46:28 +02:00
|
|
|
<link type="text/css" rel="stylesheet" href="{% static 'vendor/font-awesome/css/font-awesome.min.css' %}">
|
2017-01-28 19:46:56 +01:00
|
|
|
|
2017-05-26 00:58:59 +02:00
|
|
|
{# JS #}
|
2019-02-12 17:42:21 +01:00
|
|
|
<script src="{% static 'vendor/jquery/jquery-3.3.1.min.js' %}"></script>
|
2019-02-12 17:40:03 +01:00
|
|
|
<script src="{% static 'vendor/bootstrap/js/bootstrap.min.js' %}"></script>
|
2019-02-12 15:27:53 +01:00
|
|
|
<script src="{% static 'gestioncof/vendor/stupidtable.min.js' %}"></script>
|
2012-07-11 17:39:20 +02:00
|
|
|
{% block extra_head %}{% endblock %}
|
2012-06-27 23:28:35 +02:00
|
|
|
</head>
|
2016-07-11 19:59:32 +02:00
|
|
|
<body>
|
2012-06-27 23:28:35 +02:00
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|