1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-23 17:42:15 -05:00
wallabag/app/views/_top.twig
2014-01-23 13:09:20 +01:00

16 lines
960 B
Twig

{% if entries is defined %}
{% set count = entries|length %}
{% endif %}
<header>
<nav role="navigation">
<a class="logo" href="/">poche</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>