{% extends "layout.twig" %} {% block title %} {% if view == 'fav' %} {% trans "favorites" %} {% elseif view == 'archive' %} {% trans "archive" %} {% else %} {% trans "unread" %} {% endif %} {% endblock %} {% block menu %} {% include '_menu.twig' %} {% endblock %} {% block content %} {% if tag %}

{% trans "Tag" %}: {{ tag.value }}

{% endif %} {% if entries is empty %}

{% trans "No articles found." %}

{% else %}
{% include '_display-mode.twig' %} {% include '_sorting.twig' %}
{% block pager %} {% if nb_results > 1 %}
{{ nb_results }} {% trans "results" %}
{{ page_links | raw }}
{% endif %} {% endblock %}
{% for entry in entries %}

{{ entry.title|raw }}

{% if entry.content| getReadingTime > 0 %} {% else %} {% endif %}

{{ entry.content|striptags|slice(0, 300) }}...

{% endfor %}
{% if view == 'home' %}{% if nb_results > 1 %}{{ "Mark all the entries as read" }}{% endif %}{% endif %} {% endif %} {{ block('pager') }} {% endblock %}