You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
405 B

<header id="mainHeader">
<div id="logo">
<a href={{ path('homepage') }} id="homepageLink">Index</a>
</div>
<nav>
<a href={{ path('charts_list') }} id="chartsLink">Charts</a>
</nav>
<div id="user">
{% if app.user %}
<a href={{ path('users_edit', {id: app.user.id} ) }}>{{ app.user.email }}</a>
{% else %}
<a href={{ path('users_login') }}>Přihlásit</a>
{% endif %}
</div>
</header>

Powered by TurnKey Linux.