aboutsummaryrefslogtreecommitdiffstats
path: root/templates/news/list.html
blob: 6ddf85a48b4f64ecadb7e766cf9f1814d31f9e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends 'layout.html' %}

{% block content %}
<div class="news">
  {% for news in news %}
  <div class="news_head">
      <h2><a href="{{ url_for('show_news', news_id = news.id)}}">
              {{ news.title }}</a>
      </h2>
      <p>Posté par <a href="">{{ news.name }}</a> le {{ news.date }}</p>
  </div>
  
  <div class="news_content">
    {{ news.content }}
  </div>
  {% endfor %}
</div>
<div style="clear:both"/>
{% endblock %}