You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
834 B
47 lines
834 B
{% extends "base.html" %} |
|
{% block head %} |
|
<!-- LAOD MAIN CSS FILE --> |
|
<link href="{{ url_for('static', filename='css/style.css')}}" rel="stylesheet" media="screen"> |
|
{% endblock head%} |
|
|
|
{% block intro %} |
|
{% if request.path == "/" %} |
|
<div id="intro"> |
|
<span id="intro_title"> |
|
la <BR>petite<BR>ecole |
|
</span> |
|
</div> |
|
{% endif %} |
|
{% endblock %} |
|
|
|
{% block nav %} |
|
{% include 'menu.html'%} |
|
{% endblock nav %} |
|
|
|
{% block content %} |
|
|
|
|
|
|
|
<div class="content_wrapper "> |
|
<div class="page_data"> |
|
{% if request.path == "/" %} |
|
{% if infobox is not none %} |
|
<div id="infobox"> |
|
{{ infobox }} |
|
</div> |
|
{% endif %} |
|
{% else %} |
|
{% endif %} |
|
|
|
{{page}} |
|
</div> |
|
<div class="img_container"> |
|
|
|
</div> |
|
</div> |
|
{% endblock %} |
|
|
|
|
|
{% block script %} |
|
{% endblock %} |
|
|
|
|