header.php 754 B

123456789101112131415161718192021
  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>
  11. <div class="container">
  12. <h1><?php echo SITE_NAME; ?></h1>
  13. <nav>
  14. <a href="<?php echo SITE_URL; ?>/index.php">Startseite</a>
  15. <a href="<?php echo SITE_URL; ?>/cart.php">Warenkorb</a>
  16. <a href="<?php echo SITE_URL; ?>/admin/">Admin</a>
  17. </nav>
  18. </div>
  19. </header>
  20. <main>
  21. <div class="container">