24 lines
866 B
HTML
24 lines
866 B
HTML
<!DOCTYPE html>
|
|
{% load staticfiles %} {% load bootstrap3 %}
|
|
<html lang="fr">
|
|
<head>
|
|
<title>{% block title %}La maraude{% endblock %}</title>
|
|
{% if stylesheets %}{% for stylesheet in stylesheets %}<link rel="stylesheet" type="text/css" href="{% static stylesheet %}" />{% endfor %}{% endif %}
|
|
{# Load CSS and JavaScript #}{% bootstrap_css %}{% bootstrap_javascript %}
|
|
<link href="/static/bootstrap/navbar-fixed-side.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-4 col-md-4 col-lg-2">
|
|
{% include "navbar.html" %}
|
|
</div>
|
|
<div class="col-sm-8 col-md-8 col-lg-10">
|
|
<h1 class="page-header">{% block page_header %}{% endblock %}</h1>
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|