We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b751222 commit 181d3a6Copy full SHA for 181d3a6
content/theme/custom_templates/index_articles.html
@@ -42,9 +42,10 @@ <h3>{{ contenu.title | default('Titre') }}</h3>
42
{% if contenu.subtitle %}<h4>{{ contenu.subtitle | default('Sous-titre') }}</h4>{%
43
endif
44
%}
45
- Mots-clés : {% for tag in contenu.tags %}
+ {% for tag in contenu.tags %}
46
<a class="md-tag md-tag-icon" href="/tags/#tag:{{ tag | lower }}">{{ tag }}</a>{{ ", " if not loop.last else
47
- "" }} {% endfor %}
+ "" }}
48
+ {% endfor %}
49
<h5>{{ "Publié le {}".format(contenu.date_txt_long) |
50
default('vendredi 9 août 1985') }} par {{ contenu.authors | default('Prénom NOM') | join(", ") }}</h5>
51
<p>{{ contenu.description | default('Description') }}</p>
0 commit comments