選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

43 行
1.5KB

  1. <?php
  2. declare(strict_types=1);
  3. $navigationItems = [
  4. ['label' => 'Home', 'href' => '/'],
  5. ['label' => 'Example JSON', 'href' => '/users/123'],
  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 ?? 'MindVisionCode PHP') ?></title>
  16. <link rel="stylesheet" href="<?= e(asset('css/site.css')) ?>">
  17. </head>
  18. <body>
  19. <div class="page-shell">
  20. <header class="site-header">
  21. <div class="container header-inner">
  22. <a class="brand" href="/">
  23. <span class="brand-mark">MV</span>
  24. <span class="brand-copy">
  25. <strong>MindVisionCode</strong>
  26. <small>PHP MVC</small>
  27. </span>
  28. </a>
  29. <nav class="site-nav" aria-label="Primary navigation">
  30. <?php foreach ($navigationItems as $item): ?>
  31. <?php $isActive = $currentPath === $item['href']; ?>
  32. <a class="nav-link<?= $isActive ? ' is-active' : '' ?>" href="<?= e($item['href']) ?>">
  33. <?= e($item['label']) ?>
  34. </a>
  35. <?php endforeach; ?>
  36. </nav>
  37. </div>
  38. </header>

Powered by TurnKey Linux.