www-bocal/mainsite/templates/base.html

31 lines
749 B
HTML
Raw Normal View History

2017-10-15 21:48:26 +02:00
{% load staticfiles %}
2017-09-21 19:02:09 +02:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" lang="fr" content="COF,BOcal,ENS,AEENS">
<title>Le BOcal</title>
2017-10-15 21:48:26 +02:00
<link rel="stylesheet" href="{% static "font-awesome/css/font-awesome.min.css" %}">
<link rel="stylesheet" href="{% static "css/screen.css" %}">
2017-09-21 19:02:09 +02:00
</head>
<body>
2017-10-15 21:48:26 +02:00
<header>
{% include "navbar.html" %}
</header>
<div class="container">
{% include "sidebar.html" %}
2017-09-21 19:02:09 +02:00
2017-10-15 21:48:26 +02:00
<div class="main">
{% block content %}
{% endblock content %}
</div>
</div>
2017-10-15 21:48:26 +02:00
2017-09-21 19:02:09 +02:00
</body>
</html>