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

Archives

{% for article in dates %} {% endfor %}
{{ article.date.date() }} {{ article.title }}
{% endblock %} ader'> cgit logo index : blog.git
Articles du blogSébastien Dailly
aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/translations.html
blob: 121ff1a8ed2dfda17c485772ced20a01f52864df (plain)
1
2
3
4
5
6
7
8
9
10
{% macro translations_for(article) %}
{% if article.translations %}
<details class="meta">
Traductions :
{% for translation in article.translations %}
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
{% endfor %}
</details> 
{% endif %}
{% endmacro %}