{% macro comments_styles() %} {% if PELICAN_COMMENT_SYSTEM %} {# NOTE: # Instead of using this macro copy these styles in your main css file # This marco is only here to allow a quickstart with nice styles #} {% endif %} {% endmacro %} {% macro comments_form() %} {% if PELICAN_COMMENT_SYSTEM %}
Ajouter un commentaire / Add a Comment

Vous pouvez utiliser la syntaxe Markdown pour formatter votre commentaire.

You can use the Markdown syntax to format your comment.

{% if PELICAN_COMMENT_SYSTEM_FEED and article %} Flux Atom pour commentaire / Comment Atom Feed {% endif %}
{% endif %} {% endmacro %} {% macro comments_with_form() %} {% if PELICAN_COMMENT_SYSTEM %}

Commentaires / Comments


{% if article.comments %} {% else %}

Il n'y a aucun commentaire pour l'instant. / There are no comments yet.

{% endif %} {{ comments_form() }}
{% endif %} {% endmacro %} {% macro comments_js(user, domain, includeJquery=True) %} {% if PELICAN_COMMENT_SYSTEM %} {% if includeJquery %} {% endif %} {% endif %} {% endmacro %} {% macro comments_quickstart(user, domain) %} {{ comments_styles() }} {{ comments_with_form() }} {{ comments_js(user, domain) }} {% endmacro %}