]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_title.html.twig
Fixed typo in "first_steps"
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / common / Entry / _title.html.twig
1 {% set currentRoute = app.request.attributes.get('_route') %}
2
3 {% if currentRoute == 'starred' %}
4 {{ 'entry.page_titles.starred'|trans }}
5 {% elseif currentRoute == 'archive' %}
6 {{ 'entry.page_titles.archived'|trans }}
7 {% elseif currentRoute == 'all' %}
8 {{ 'entry.page_titles.filtered'|trans }}
9 {% elseif currentRoute == 'tag_entries' %}
10 {{ 'entry.page_titles.filtered_tags'|trans }} {{ currentTag }}
11 {% elseif currentRoute == 'untagged' %}
12 {{ 'entry.page_titles.untagged'|trans }}
13 {% else %}
14 {{ 'entry.page_titles.unread'|trans }}
15 {% endif %}