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

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

{% else %}
{{ form_rest(form) }}
{% 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 %}