59 lines
2.3 KiB
HTML
59 lines
2.3 KiB
HTML
{{ define "base.html" }}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ .Title }} | MiauInv</title>
|
|
<script src="https://unpkg.com/htmx.org@2.0.4"></script>
|
|
<script src="/assets/js/api.js"></script>
|
|
<link rel="stylesheet" href="/assets/css/theme.css">
|
|
<link rel="stylesheet" href="/assets/css/dashboard.css">
|
|
</head>
|
|
<body class="dashboard-layout">
|
|
|
|
<header>
|
|
<div class="nav-container">
|
|
<div class="nav-left">
|
|
<div class="brand">Miau<span>Inv</span></div>
|
|
|
|
<button class="menu-trigger" id="menu-btn" aria-label="Menu">
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg>
|
|
</button>
|
|
|
|
<nav id="main-nav">
|
|
<a href="/dashboard">Dashboard</a>
|
|
<a href="/inventory">Inventory</a>
|
|
<a href="/projects">Projects</a>
|
|
<a href="/locations">Locations</a>
|
|
</nav>
|
|
</div>
|
|
|
|
<div class="profile-dropdown">
|
|
<button class="profile-trigger" id="profile-btn">
|
|
<div class="avatar">M</div>
|
|
<span class="username">Admin</span>
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>
|
|
</button>
|
|
<div class="dropdown-menu" id="dropdown-menu">
|
|
<a href="/profile/settings">Account Settings</a>
|
|
<a href="/profile/activity">Activity Log</a>
|
|
<hr class="dropdown-divider">
|
|
<button class="logout-btn"
|
|
hx-post="/api/logout"
|
|
hx-on::after-request="window.location.href='/login'">
|
|
Log Out
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
{{ template "content" . }}
|
|
</main>
|
|
|
|
<script src="/assets/js/api.js"></script>
|
|
</body>
|
|
</html>
|
|
{{ end }} |