aboutsummaryrefslogtreecommitdiffstats
path: root/templates/news/list.html
blob: ddbe1ab16b7c7bdb365753eb62bd7e42448e3782 (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|format_date}}</p>
  </div>
  
  <div class="news_content">
    {{ news.content|safe }}
  </div>
  {% endfor %}
</div>
<div style="clear:both"/>
{% endblock %}