{% 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 %}
Add a Comment

You can use the Markdown syntax to format your comment.

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

Comments


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

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 %}