forked from DGNum/gestioCOF
20 lines
890 B
HTML
20 lines
890 B
HTML
{% load staticfiles %}
|
|
|
|
<!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>
|
|
<link type="text/css" rel="stylesheet" href="{% static "css/bootstrap.min.css" %}" />
|
|
<link type="text/css" rel="stylesheet" href="{% static "css/cof.css" %}" />
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Dosis|Dosis:700|Raleway|Roboto:300,300i,700" rel="stylesheet">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
|
<script src=" {% static "js/bootstrap.min.js" %}"></script>
|
|
</html>
|