{% extends "layout.html" %} {% block content %} {% if feeds|count == 0 %}

{{ _("You don't have any feeds.") }}

{{ _('Add some') }}, {{ _('or') }} {{ _('upload an OPML file.') }}

{% else %}

{{ _('Articles') }} ({{ articles.__len__() }})

{% if filter_ == 'all' %}{% endif %} {{ _('All') }} {% if filter_ == 'all' %}{% endif %} | {% if filter_ == 'read' %}{% endif %} {{ _('Read') }} {% if filter_ == 'read' %}{% endif %} | {% if filter_ == 'unread' %}{% endif %} {{ _('Unread') }} {% if filter_ == 'unread' %}{% endif %} - {% if limit == 10 %}{% endif %} {{ _(10) }} {% if limit == 10 %}{% endif %} | {% if limit == 100 %}{% endif %} {{ _(100) }} {% if limit == 100 %}{% endif %} | {% if limit == 1000 %}{% endif %} {{ _(1000) }} {% if limit == 1000 %}{% endif %} | {% if limit == 'all' %}{% endif %} {{ _('All') }} {% if limit == 'all' %}{% endif %}
{% if articles | count != 0%}
{% for article in articles %} {% endfor %}
{{ _('Feed') }} {{ _('Article') }} {{ _('Date') }}
{{ article.source.title|safe }} {{ article.title|safe }} {{ article.date|datetime }} {% if article.like %} {% else %} {% endif %} {% if article.readed %} {% else %} {% if filter_ == 'all' %}{% endif %} {% endif %}
{% endif %}
{% endif %} {% endblock %}