A project management app derived from Mind-Vision-Code
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

45 satır
1.8KB

  1. <?php
  2. declare(strict_types=1);
  3. $navigationItems = [
  4. ['label' => 'Dashboard', 'href' => '/'],
  5. ['label' => 'Projects', 'href' => '/projects'],
  6. ['label' => 'Activity', 'href' => '/activity'],
  7. ['label' => 'New project', 'href' => '/projects/create'],
  8. ];
  9. $currentPath = parse_url($_SERVER['REQUEST_URI'] ?? '/', PHP_URL_PATH);
  10. $currentPath = is_string($currentPath) && $currentPath !== '' ? $currentPath : '/';
  11. ?>
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15. <meta charset="UTF-8">
  16. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  17. <title><?= e($pageTitle ?? 'Project Compass') ?></title>
  18. <link rel="stylesheet" href="<?= e(asset('css/site.css')) ?>">
  19. <script src="<?= e(asset('js/app.js')) ?>" defer></script>
  20. </head>
  21. <body <?= isset($bodyClass) ? 'class="' . e($bodyClass) . '"' : '' ?>>
  22. <div class="page-shell">
  23. <a class="skip-link" href="#main-content">Skip to content</a>
  24. <header class="site-header">
  25. <div class="container header-inner">
  26. <a class="brand" href="/">
  27. <span class="brand-mark">PC</span>
  28. <span class="brand-copy">
  29. <strong>Project Compass</strong>
  30. <small>Portfolio command center</small>
  31. </span>
  32. </a>
  33. <nav class="site-nav" aria-label="Primary navigation">
  34. <?php foreach ($navigationItems as $item): ?>
  35. <?php $isActive = $currentPath === $item['href']; ?>
  36. <a class="nav-link<?= $isActive ? ' is-active' : '' ?>" href="<?= e($item['href']) ?>"><?= e($item['label']) ?></a>
  37. <?php endforeach; ?>
  38. </nav>
  39. </div>
  40. </header>

Powered by TurnKey Linux.