Files
nexus/partials/structure/layout_start.php
2026-03-02 22:41:45 +01:00

38 lines
1.2 KiB
PHP
Executable File

<?php
/** @var \App\App $app */
$app = app();
$app->assets()->addStyle('/assets/css/app.css', 'early');
$app->assets()->addScript('/assets/js/app.js', 'footer', true);
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?= htmlspecialchars(t('common.title'), ENT_QUOTES) ?></title>
<?php asset_styles(); ?>
<?php asset_scripts('header'); ?>
</head>
<body>
<div class="bg-orb orb-a"></div>
<div class="bg-orb orb-b"></div>
<div class="site-shell">
<header class="site-header">
<div class="brand">
<img src="/assets/images/logo.png" alt="Nexus Logo">
<div class="brand-text">
<div class="brand-title"><?= htmlspecialchars(t('common.title'), ENT_QUOTES) ?></div>
<div class="brand-sub">Nexus Control Panel</div>
</div>
</div>
<nav class="site-nav">
<a href="/" class="nav-link is-active">Dashboard</a>
<a href="/" class="nav-link">KEA DHCP</a>
<a href="/" class="nav-link">Inventory</a>
</nav>
<div class="header-cta">
<button class="cta-button">+ Neuer Host</button>
</div>
</header>
<main class="site-main">