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.
 
 
 
 

41 lines
791 B

{% extends 'base.html' %}
{% block head %}
<!-- LAOD MAIN CSS FILE -->
<link href="{{ url_for('static', filename='css/style.css')}}" rel="stylesheet" media="screen">
{% endblock %}
{% block nav %}
{% include 'menu.html'%}
{% endblock nav %}
{% block content %}
<div class="content_wrapper wide_content">
<div class="page_data">
{% for a in articles %}
<article>
<div class="{{a.category}}">
<span class ="a_title">{{a.title}}</span>,
<span class ="a_meta">{{a.category}}</span>,
<span class ="a_meta">{{a.date}}</span>,
</div>
<div class="a_content">
{{a}}
</div>
</article>
{% endfor %}
</div>
<div class="img_container">
</div>
</div>
{% endblock %}