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

{{ entry.title|e|default('entry.default_title'|trans)|raw }}

{{ entry.createdAt|date('Y-m-d H:i') }} {% if entry.publishedAt is not null %} {{ entry.publishedAt|date('Y-m-d H:i') }} {% endif %} {% if entry.publishedBy is not empty %} {% for author in entry.publishedBy %} {{ author }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %} {% 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 %} comment {{ 'entry.view.annotations_on_the_entry'|transchoice(entry.annotations | length) }} {% if entry.originUrl is not empty %} launch {{ entry.originUrl|striptags|removeSchemeAndWww|truncate(32) }} {% endif %}
{{ entry.content | raw }}
{% endblock %}