{% import "_forms.html" as forms %}

{% if page.category %} {{ _('Category') }} : {{ page.category }} {% endif %} {% if page.tags %} {{ _('Tags') }} : {% for tag in page.tags.split(',') %} {{ tag }}  {% endfor %} {% endif %}

{% if config.COMMENTS == 'YES' and page.comments %}

{% with total = page.comments | length %}
{{ ngettext('%(num)s comment', '%(num)s comments', total) }}
{% endif %} {% if config.COMMENTS == 'YES' and form %}

{{ _('Add a comment') }}

{{ forms.render(form) }}
{% endif %}