926ef9f0 |
1 | {% extends "base.html" %} |
2 | {% load i18n cms_tags pagination_tags%} |
3 | |
4 | |
5 | {% block Contenu %} |
6 | <h1>Actualités</h1> |
7 | {% if actualite_list %} |
8 | {% with actualite_list as item_list %} |
9 | {% for item in item_list %} |
10 | <div class="boiteContent"> |
11 | <div class="actu"> |
12 | <div class="actuImg"> |
13 | <a href="{{ item.get_absolute_url }}"> |
14 | {% if item.image %} |
15 | <img src="{{ MEDIA_URL }}{{ item.image }}" width="96" height="100" alt="{{ item.titre }}" title="{{ item.titre }}"/> |
16 | {% else %} |
17 | <img src="{{ STATIC_URL }}img/logoActu.png" width="96" height="100" alt="Actualité IFGU" title="Actualité IFGU"/> |
18 | {% endif %} |
19 | </a> |
20 | </div> |
21 | <div class="actuTxt"> |
22 | <h1><a href="{{ item.get_absolute_url }}">{{ item.titre }}</a></h1> |
23 | <p>{{ item.texte|striptags|truncatewords_html:80 }}</p> |
24 | <span><a href="{{ item.get_absolute_url }}">Lire la suite - Publié le {{ item.date_pub }}</a></span> |
25 | </div> |
26 | </div> |
27 | </div> |
28 | {% endfor %} |
29 | {% endwith %} |
30 | {% else %} |
31 | <p>Aucune actualité pour le moment</p> |
32 | {% endif %} |
33 | |
34 | {% paginate %} |
35 | |
36 | {% endblock %} |