Files
django-maraudes/website/templates/base.html
2016-08-25 10:44:56 +02:00

27 lines
967 B
HTML

<!DOCTYPE html>
{% load staticfiles %} {% load bootstrap3 %}
<html lang="fr">
<head>
<title>{% block title %}La maraude{% endblock %}</title>
{% bootstrap_css %}{% bootstrap_javascript %}
<!-- Side Navbar from http://www.samrayner.com/bootstrap-side-navbar/inverse.html -->
<link href="/static/bootstrap/navbar-fixed-side.css" rel="stylesheet" />
{% if stylesheets %}{% for stylesheet in stylesheets %}
<link rel="stylesheet" type="text/css" href="{% static stylesheet %}" />{% endfor %}{% endif %}
</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>
{% bootstrap_messages %}
{% block content %}{% endblock %}
</div>
</div>
</div>
</body>
</html>