14 lines
576 B
Plaintext
14 lines
576 B
Plaintext
<header class="topbar">
|
|
<div class="topbar__brand">
|
|
<span class="topbar__mark" aria-hidden="true"></span>
|
|
<span class="topbar__title">Zeitkonto</span>
|
|
</div>
|
|
<nav class="topbar__nav">
|
|
<a href="/" class="topbar__link <%= title === 'Übersicht' ? 'is-active' : '' %>">Übersicht</a>
|
|
<a href="/settings" class="topbar__link <%= title === 'Einstellungen' ? 'is-active' : '' %>">Einstellungen</a>
|
|
<form action="/logout" method="POST" class="topbar__logout">
|
|
<button type="submit" class="link-button">Abmelden</button>
|
|
</form>
|
|
</nav>
|
|
</header>
|