{% for category in entry.fetched_categories %}
{{ category }}{% if not forloop.last %},{% else %} | {% endif %}
{% endfor %}
{% if entry.author.get_full_name %}
{% trans 'by' %} {{ entry.author.get_full_name }} |
{% endif %}
{% if entry.first_image %}{{ entry.first_image.render }}{% endif %}
{% if entry.first_richtext %}{{ entry.first_richtext.render }}{% endif %}
{% endfor %}
{# if not content.featured_only #}
{% with content.entries as page_obj %}
{% if page_obj.has_previous %}
«
{% endif %}
{% for p in page_obj.page_range %}
{% if not p %}…
{% else %}
{{ p }}
{% endif %}
{% endfor %}
{% if page_obj.has_next %}
»
{% endif %}