{% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ article.title |striptags }}{% endblock %}
{% block content %}
{{ article.title }}
{%include 'meta.html'%}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}
Commentaires :
{% for comment in article.disqus_comments recursive %}-
{{ comment.author.name }}
{{ comment.createdAt }}
{% if comment.children %}
{% endfor %}
{% endif %}{{ loop(comment.children) }}
{% endif %}