Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

45 строки
1.7KB

  1. <?php
  2. declare(strict_types=1);
  3. $navigationItems = [
  4. ['label' => 'Boards', 'href' => '/boards'],
  5. ['label' => 'Admin', 'href' => '/admin/cron'],
  6. ];
  7. $currentPath = parse_url($_SERVER['REQUEST_URI'] ?? '/', PHP_URL_PATH);
  8. $currentPath = is_string($currentPath) && $currentPath !== '' ? $currentPath : '/';
  9. ?>
  10. <!DOCTYPE html>
  11. <html lang="en">
  12. <head>
  13. <meta charset="UTF-8">
  14. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  15. <title><?= e($pageTitle ?? 'KCI Kanban') ?></title>
  16. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
  17. <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css" rel="stylesheet" />
  18. <link rel="stylesheet" href="<?= e(asset('css/site.css')) ?>">
  19. </head>
  20. <body>
  21. <div class="page-shell">
  22. <header class="site-header">
  23. <div class="container header-inner">
  24. <a class="brand" href="/boards">
  25. <span class="brand-mark">KC</span>
  26. <span class="brand-copy">
  27. <strong>KCI Kanban</strong>
  28. <small>PHP</small>
  29. </span>
  30. </a>
  31. <nav class="site-nav" aria-label="Primary navigation">
  32. <?php foreach ($navigationItems as $item): ?>
  33. <?php $isActive = str_starts_with($currentPath, $item['href']); ?>
  34. <a class="nav-link<?= $isActive ? ' is-active' : '' ?>" href="<?= e($item['href']) ?>">
  35. <?= e($item['label']) ?>
  36. </a>
  37. <?php endforeach; ?>
  38. </nav>
  39. </div>
  40. </header>

Powered by TurnKey Linux.