flask website for la petite ecole
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.
 
 
 
 

27 lines
525 B

{% extends 'base.html' %}
{% block head %}
<!-- LAOD MAIN CSS FILE -->
<link href="{{ url_for('static', filename='css/style.css')}}" rel="stylesheet" media="screen">
<style>#bottom_nav{display:none}</style>
{% endblock %}
{% block nav %}
{% include 'menu.html'%}
{% endblock nav %}
{% block content %}
<a id="button">haut de page <b>&#8593;</b></a>
<div id="vert_bar" class="left"></div>
<div class="content_wrapper">
<article class="{{page.category}}">
{{ page }}
</article>
</div>
{% endblock %}