header.php 515 B

123456789101112131415
  1. <?php function generateHeader($title, $description, $keywords) { ?><!DOCTYPE html5>
  2. <html>
  3. <head>
  4. <link href="style.css" rel="stylesheet" />
  5. <title><?php echo $title; ?></title>
  6. <meta name="description" content="<?php echo $description;?>" />
  7. <meta name="keywords" content="<?php echo $keywords;?>" />
  8. <script>
  9. <?php if (!isset($_GET["PRERELEASE"])) echo 'document.location.href="/kiwi/";'; ?>
  10. </script>
  11. </head>
  12. <body>
  13. <header>
  14. </header>
  15. <div class="body"><?php } ?>