| 123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html lang="de">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title><?php echo isset($pageTitle) ? $pageTitle . ' - ' : ''; ?><?php echo SITE_NAME; ?></title>
- <link rel="stylesheet" href="<?php echo SITE_URL; ?>/assets/css/style.css">
- </head>
- <body>
- <header>
- <div class="container">
- <h1><?php echo SITE_NAME; ?></h1>
- <nav>
- <a href="<?php echo SITE_URL; ?>/index.php">Startseite</a>
- <a href="<?php echo SITE_URL; ?>/cart.php">Warenkorb</a>
- <a href="<?php echo SITE_URL; ?>/admin/">Admin</a>
- </nav>
- </div>
- </header>
- <main>
- <div class="container">
|