49 lines
2.7 KiB
Text
49 lines
2.7 KiB
Text
<!-- Header Partial -->
|
|
<!DOCTYPE html>
|
|
<html lang="en" data-theme="light">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><%= typeof title !== 'undefined' ? title + ' — ' : '' %><%= appName %> · <%= appNameHi %></title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/css/style.css?v=<%= typeof assetVersion !== 'undefined' ? assetVersion : '1' %>">
|
|
</head>
|
|
<body>
|
|
<nav class="topbar">
|
|
<div class="topbar-brand">
|
|
<div class="emblem">🌐</div>
|
|
<div class="brand-text">
|
|
<span class="brand-hi"><%= appNameHi %></span>
|
|
<span class="brand-en"><%= appName %></span>
|
|
<span class="brand-tagline">भारत सरकार प्रायोजित · Govt. of India Initiative</span>
|
|
</div>
|
|
</div>
|
|
<div class="topbar-actions">
|
|
<button onclick="toggleTheme()" class="btn-icon" title="Toggle theme">☀</button>
|
|
<span class="user-name">👤 <%= user.username %></span>
|
|
<a href="/logout" class="btn btn-sm btn-outline">Logout</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="layout">
|
|
<aside class="sidebar">
|
|
<div class="sidebar-section">
|
|
<span class="sidebar-title">Main</span>
|
|
<a href="/" class="sidebar-link <%= typeof activeMenu !== 'undefined' && activeMenu === 'dashboard' ? 'active' : '' %>">📊 Dashboard</a>
|
|
<a href="/loads" class="sidebar-link <%= typeof activeMenu !== 'undefined' && activeMenu === 'loads' ? 'active' : '' %>">🚚 Loads</a>
|
|
<a href="/payments" class="sidebar-link <%= typeof activeMenu !== 'undefined' && activeMenu === 'payments' ? 'active' : '' %>">💰 Payments</a>
|
|
</div>
|
|
<div class="sidebar-section">
|
|
<span class="sidebar-title">Contacts</span>
|
|
<a href="/shippers" class="sidebar-link <%= typeof activeMenu !== 'undefined' && activeMenu === 'shippers' ? 'active' : '' %>">🏢 Shippers</a>
|
|
<a href="/vehicles" class="sidebar-link <%= typeof activeMenu !== 'undefined' && activeMenu === 'vehicles' ? 'active' : '' %>">🚚 Vehicles</a>
|
|
</div>
|
|
<div class="sidebar-section">
|
|
<span class="sidebar-title">Reports</span>
|
|
<a href="/reports" class="sidebar-link <%= typeof activeMenu !== 'undefined' && activeMenu === 'reports' ? 'active' : '' %>">📈 Reports</a>
|
|
</div>
|
|
</aside>
|
|
|
|
<main class="content">
|