Add app layout with sidebar and header
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<aside class="sidebar">
|
||||
<nav class="sidebar-nav">
|
||||
<a href="/" class="<?= ($view ?? '') === 'today' ? 'active' : '' ?>">🏠 Heute</a>
|
||||
<a href="/?view=now" class="<?= ($view ?? '') === 'now' ? 'active' : '' ?>">▶ Jetzt</a>
|
||||
<a href="/?view=favorites" class="<?= ($view ?? '') === 'favorites' ? 'active' : '' ?>">⭐ Favoriten</a>
|
||||
<a href="/?view=channels" class="<?= ($view ?? '') === 'channels' ? 'active' : '' ?>">📺 Sender</a>
|
||||
<a href="/?view=settings" class="<?= ($view ?? '') === 'settings' ? 'active' : '' ?>">⚙ Einstellungen</a>
|
||||
</nav>
|
||||
</aside>
|
||||
Reference in New Issue
Block a user