blob: b51a318248623d16ba88f75f538ce3e96158661f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Accueil{% endblock %}
{% block content %}
{% if articles %}
{% for article in articles %}
<article class="post">
<h2 class="title"><a href="{{ SITEURL }}/{{ article.url}}">{{ article.title }}</a></h2>
<details class="meta">
<p>
Posté{%if article.date %} le <time pubdate="pubdate" datetime="{{ article.date }}">{{ article.date }}</time>{% endif %}{% if article.author %} par {{ article.author }}{% endif %} dans «<a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>».
{% if articles.tags %}<br />Tags : {% for tag in article.tags %}{% if loop.index > 1%}, {% endif %}<span class="tag"><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a></span>{% endfor %}{%endif%}
</p>
</details>
<section class="post_content">
{{ article.summary }}<br />
<a class="more" href="{{ SITEURL }}/{{ article.url }}">Lire la suite...</a>
</section>
</article>
{% endfor %}
{% endif %}
{% endblock %}
|