Adding the core applications code to the repository

This commit is contained in:
artus
2016-08-05 10:41:43 +02:00
parent 243ff9153e
commit 5f4faf46ec
155 changed files with 13176 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<!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 %}
</head>
<body>
{% block globalnav %}{% endblock %}
<div class="container">
<div class="row">
{% block panels %}<div class="col-md-12">{% endblock %}
{% bootstrap_messages %}
<div class="page-header"><h1>{% block page_header %}Header{% endblock %}</h1></div>
{% block content %}{% endblock %}
</div>
</div>
</div>
</body>
</html>