freightdesk/webapp/src/views/partials/header.ejs

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">&#127760;</div>
<div class="brand-text">
<span class="brand-hi"><%= appNameHi %></span>
<span class="brand-en"><%= appName %></span>
<span class="brand-tagline">&#2349;&#2366;&#2352;&#2340; &#2360;&#2352;&#2325;&#2366;&#2352; &#2346;&#2381;&#2352;&#2366;&#2351;&#2379;&#2332;&#2367;&#2340; &middot; Govt. of India Initiative</span>
</div>
</div>
<div class="topbar-actions">
<button onclick="toggleTheme()" class="btn-icon" title="Toggle theme">&#9728;</button>
<span class="user-name">&#128100; <%= 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' : '' %>">&#128202; Dashboard</a>
<a href="/loads" class="sidebar-link <%= typeof activeMenu !== 'undefined' && activeMenu === 'loads' ? 'active' : '' %>">&#128666; Loads</a>
<a href="/payments" class="sidebar-link <%= typeof activeMenu !== 'undefined' && activeMenu === 'payments' ? 'active' : '' %>">&#128176; 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' : '' %>">&#127970; Shippers</a>
<a href="/vehicles" class="sidebar-link <%= typeof activeMenu !== 'undefined' && activeMenu === 'vehicles' ? 'active' : '' %>">&#128666; 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' : '' %>">&#128200; Reports</a>
</div>
</aside>
<main class="content">