1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-17 14:45:06 -05:00
wallabag/app/views/_top.twig

16 lines
963 B
Twig

{% if entries is defined %}
{% set count = entries|length %}
{% endif %}
<header>
<nav role="navigation">
<a class="logo" href="/">wallabag</a>
<ul>
<li {% if app.request.requesturi == '/' %}class="active"{% endif %}><a href="/">{{ 'unread'|trans }}</a>{% if app.request.requesturi == '/' %} (<span id="counter">{{count}}</span>){% endif %}</li>
<li {% if app.request.requesturi == '/bookmarks' %}class="active"{% endif %}><a href="/bookmarks">{{ 'bookmarks'|trans }}</a></li>
<li {% if app.request.requesturi == '/archive' %}class="active"{% endif %}><a href="/archive">{{ 'archive'|trans }}</a></li>
<li {% if app.request.requesturi == '/add' %}class="active"{% endif %}><a href="{{ path('add') }}">{{ 'entry.add'|trans }}</a></li>
<li><a href="{{ path('logout') }}">{{ 'logout'|trans }}</a></li>
</ul>
</nav>
</header>