header.php 1.2 KB

123456789101112131415161718192021222324252627
  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="stylesheet" href="<?php echo SITE_URL; ?>/assets/css/style.css">
  8. </head>
  9. <body>
  10. <header class="site-header">
  11. <div class="container header-inner">
  12. <a class="brand" href="<?php echo SITE_URL; ?>/index.php">
  13. <img class="brand-logo" src="<?php echo SITE_URL; ?>/assets/feuerwehr-Logo-invers.webp" alt="Freiwillige Feuerwehr Freising Logo">
  14. <div class="brand-text">
  15. <span class="brand-title"><?php echo SITE_NAME; ?></span>
  16. <span class="brand-subtitle">Onlineshop</span>
  17. </div>
  18. </a>
  19. <nav class="site-nav">
  20. <a href="<?php echo SITE_URL; ?>/index.php">Startseite</a>
  21. <a href="<?php echo SITE_URL; ?>/cart.php">Warenkorb</a>
  22. <a href="<?php echo SITE_URL; ?>/admin/">Admin</a>
  23. </nav>
  24. </div>
  25. </header>
  26. <main>
  27. <div class="container">