{% extends "WallabagBundle::layout.html.twig" %} {% block title "Unread" %} {% block menu %} {% include "WallabagBundle::_menu.html.twig" %} {% endblock %} {% 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 %} {% for entry in entries %}

{{ entry.title|raw }}

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

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

{% endfor %} {% endif %} {% endblock %}