{% extends "base.html" %} {% block title %}{{ SITENAME }} - {{ category }}{% endblock %} {% block content %}

Articles dans la catégorie « {{ category }} »

{% if articles %} {% import 'abstract.html' as abstract with context %} {{ abstract.abstract("h2") }} {% endif %} {% if CATEGORY_FEED_RSS %} {% endif %} {% if CATEGORY_FEED_ATOM %} {% endif %} {% endblock %} a96056d55'/> Articles du blogSébastien Dailly
aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/meta.html
blob: db361730f9eff7f84b8bec4a9b312184edaff1e8 (plain)
1
2
3
4
5
        <details class="meta">
          Publié le <time datetime="{{ article.date.isoformat() }}" pubdate="pubdate">{{ article.locale_date }}</time>
          {% if article.author %} par {{ article.author }}{% endif %} dans «<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>».  
          {% if article.tags %}Mots-clés: {% for tag in article.tags %}{%if loop.index > 1%}, {%endif%}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% endfor %}</p>{% endif %}
        </details>