{% extends "WallabagCoreBundle::layout.html.twig" %} {% block title "Unread" %} {% block content %} {% block pager %}
{{ entries.count }} {% trans %}entries{% endtrans %}
{% endblock %} {% if entries is empty %}

{% trans %}No articles found.{% endtrans %}

{% else %} {% for entry in entries %}

{{ entry.title|raw }}

{% if entry.readingTime > 0 %}
{% trans %}estimated reading time :{% endtrans %} {{ entry.readingTime }} min
{% else %}
{% trans %}estimated reading time :{% endtrans %} < 1 min
{% endif %} {% if entry.previewPicture is null %}

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

{% else %} {{ entry.title|raw }} {% endif %}
{% endfor %} {% endif %} {% endblock %}