{% load humanize reader %} {% for article in articles %}
{% if article.uri %}

{{ article.title }}

{% else %}

{{ article.title }}

{% endif %} {% if article.published_at %} {{ article.published_at | naturalday | title}} {% else %} {{ article.created_at | naturalday | title}} {% endif %} • {{ article.feed.name }}
{% if user.is_authenticated %}

{% if user.reader_profile in article.stared_by.all %} {% else %} {% endif %}

{% if user.reader_profile in article.read_by.all %} {% else %} {% endif %}

{% endif %}
{{ cleaned_articles | dict_get:article.id | safe }}
{% if article.attachment_set.all %}
{% endif %}
{% endfor %} {% include 'reader/_pagination.html' %}