Files
Homepage/index.html
2026-02-12 22:50:30 +01:00

86 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intranet - Local Services</title>
<meta name="description" content="Local network services portal">
<!-- Favicons -->
<link rel="icon" href="assets/img/favicon.png">
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="manifest" href="site.webmanifest">
<!-- Inter Font -->
<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=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Remix Icon CDN -->
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.6.0/fonts/remixicon.min.css" rel="stylesheet">
<!-- Main CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Header -->
<header id="header">
<div class="header-inner">
<a href="index.html" class="logo">Intranet<span>.</span>local</a>
<nav id="nav" class="nav-links"></nav>
<button id="nav-toggle" class="nav-toggle" aria-label="Toggle navigation" aria-expanded="false">
<i class="ri-menu-line"></i>
</button>
</div>
</header>
<main>
<!-- Hero (JS renders clock/weather widget inside) -->
<section id="hero">
<div class="hero-content" id="hero-widget"></div>
</section>
<!-- Search overlay (hidden by default) -->
<div id="search-overlay" class="search-overlay hidden">
<div class="search-container">
<div class="search-input-wrap">
<i class="ri-search-line"></i>
<input type="text" id="search-input" placeholder="Search services..." autocomplete="off">
<kbd>/</kbd>
</div>
<div id="search-results" class="search-results"></div>
</div>
</div>
<!-- Status bar (3 rich monitors, rendered from config) -->
<section id="status-bar">
<div class="container">
<h2 class="section-title"><i class="ri-pulse-line"></i> System Status</h2>
<div class="status-grid" id="status-grid"></div>
</div>
</section>
<!-- Service sections (all rendered from JSON) -->
<div id="services-container"></div>
</main>
<!-- Footer -->
<footer id="footer">
<blockquote>
<p>"I don't know half of you half as well as I should like; and I like less than half of you half as well as you deserve."</p>
<cite>― J.R.R. Tolkien, The Fellowship of the Ring</cite>
</blockquote>
</footer>
<!-- Main JS -->
<script src="assets/js/main.js"></script>
</body>
</html>