{% extends theme("layout.html") %} {% block content %} {% if title %}

{{ title }}

{% endif %} {% for page in pages %}

{{ page.title }}

{{ page.published | date('EE dd MMMM YYYY') }} {% if page.comments and config.COMMENTS == 'YES' %} {% with total = page.comments | length %} | {{ ngettext('%(num)s comment', '%(num)s comments', total) }} {% endwith %} {% endif %} {% if page.author %} | {{ page.author }} {% endif %}
{{ page.summary | safe }} {{ _('Read more') }}

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


{% endfor %}
{{ pagination.links | safe }}
{% endblock %}