← back to NationalPaperHangers
views/admin/partials/admin-header.ejs
27 lines
<header class="site-header admin-header">
<div class="header-inner">
<a href="/admin" class="brand">
<span class="brand-mark">N · P · H</span>
<span class="brand-name">National Paper Hangers</span>
<span class="admin-tag">admin</span>
</a>
<nav class="primary-nav" aria-label="Admin">
<a href="/admin" class="<%= path === '/admin' ? 'is-current' : '' %>">Dashboard</a>
<a href="/admin/calendar" class="<%= path.startsWith('/admin/calendar') ? 'is-current' : '' %>">Calendar</a>
<a href="/admin/bookings" class="<%= path.startsWith('/admin/bookings') ? 'is-current' : '' %>">Bookings</a>
<a href="/admin/profile" class="<%= path.startsWith('/admin/profile') ? 'is-current' : '' %>">Profile</a>
<a href="/admin/template" class="<%= path.startsWith('/admin/template') ? 'is-current' : '' %>">Page design</a>
<a href="/admin/billing" class="<%= path.startsWith('/admin/billing') ? 'is-current' : '' %>">Billing</a>
<a href="/admin/insurance" class="<%= path.startsWith('/admin/insurance') || path.startsWith('/admin/coi-requests') ? 'is-current' : '' %>">Insurance</a>
</nav>
<div class="header-actions">
<button type="button" class="theme-toggle" aria-label="Toggle theme" data-theme-toggle>
<span class="t-light" aria-hidden="true">☼</span>
<span class="t-dark" aria-hidden="true">☾</span>
</button>
<a href="/installer/<%= installer.slug %>" class="btn btn-ghost btn-sm" target="_blank" rel="noopener noreferrer">View public profile ↗</a>
<form method="post" action="/logout" class="inline-form"><input type="hidden" name="_csrf" value="<%= csrfToken %>"><button class="btn btn-ghost btn-sm" type="submit">Log out</button></form>
</div>
</div>
</header>