{% extends "layout.html" %} {% block rss %} {% set rss_path = "categories/" ~ term.name ~ "/rss.xml" %} {% endblock rss %} {% block content %}

Category : {{ term.name }}

{% if paginator %} {% set pages = paginator.pages %} {% else %} {% set pages = term.pages %} {% endif %} {% for page in pages %}

{{ page.title }}

{{ page.description }}

{{ page.reading_time }} min {{ page.word_count }} words
{% if page.extra.author.name %} {{ page.extra.author.name }} {% if page.extra.author.avatar %} {{ page.extra.author.avatar_alt }} {% endif %} {% else %} {{ config.extra.default_author.name }} {{ config.extra.default_author.avatar_alt }} {% endif %}
{{ page.summary | safe }} Read More
{% if page.taxonomies.categories %}

Categories: {% for category in page.taxonomies.categories %} {{category}} {% endfor %}

{% endif %}
{% if page.taxonomies.tags %}

Tags: {% for tag in page.taxonomies.tags %} {{tag}} {% endfor %}

{% endif %}
{% endfor %}
{% endblock content %} {% block pagination %} {% if paginator.previous or paginator.next %}
{% if not paginator.previous %} Previous {% else %} Previous {% endif %} {% if not paginator.next %} Next Page {% else %} Next page {% endif %}
{% endif %} {% endblock %}