{% extends "WallabagCoreBundle::layout.html.twig" %} {% block title %}{{ entry.title|raw }} ({{ entry.domainName|removeWww }}){% endblock %} {% block content %}

{{ entry.title|raw }}

{{ entry.createdAt|date('Y-m-d') }} {% set readingTime = entry.readingTime / app.user.config.readingSpeed %} {% if readingTime > 0 %} {{ 'entry.list.reading_time_minutes_short'|trans({'%readingTime%': readingTime|round}) }} {% else %} {{ 'entry.list.reading_time_less_one_minute_short'|trans|raw }} {% endif %} {% set nbAnnotations = entry.annotations | length %} comment {{ 'entry.view.annotations_on_the_entry'|transchoice(entry.annotations | length) }}
{% if entry.previewPicture is not null %}
{{ entry.title|raw }}
{% endif %}
{{ entry.content | raw }}
{% endblock %}