header.php 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="de">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title><?php echo isset($pageTitle) ? $pageTitle . ' - ' : ''; ?><?php echo SITE_NAME; ?></title>
  7. <link rel="shortcut icon" href="favicon.png">
  8. <link rel="stylesheet" href="<?php echo SITE_URL; ?>/assets/css/style.css">
  9. </head>
  10. <body class="<?php echo isset($bodyClass) ? htmlspecialchars($bodyClass) : ''; ?>">
  11. <header class="site-header">
  12. <div class="container header-inner">
  13. <a class="brand" href="<?php echo SITE_URL; ?>/index.php">
  14. <img class="brand-logo" src="<?php echo SITE_URL; ?>/assets/feuerwehr-Logo-invers.webp" alt="Freiwillige Feuerwehr Freising Logo">
  15. <div class="brand-text">
  16. <span class="brand-title"><?php echo SITE_NAME; ?></span>
  17. <span class="brand-subtitle">Onlineshop</span>
  18. </div>
  19. </a>
  20. <nav class="site-nav">
  21. <a href="<?php echo SITE_URL; ?>/index.php">Startseite</a>
  22. <a href="<?php echo SITE_URL; ?>/cart.php">Warenkorb</a>
  23. <a href="<?php echo SITE_URL; ?>/faq.php">FAQ</a>
  24. <a href="<?php echo SITE_URL; ?>/orders.php">Meine Bestellungen</a>
  25. </nav>
  26. </div>
  27. </header>
  28. <main>
  29. <div class="container">