header.php 723 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. include "../config/config.php";
  3. if (!isset($config["title"]))
  4. $config["title"] = "Tent";
  5. if (isset($title)) {
  6. $title = $config["title"] . " · " . $title;
  7. } else {
  8. $title = $config["title"];
  9. };
  10. ?>
  11. <!doctype html>
  12. <html>
  13. <head>
  14. <meta charset="utf-8">
  15. <meta name="viewport" content="width=device-width, initial-scale=1">
  16. <title><?= $title ?></title>
  17. <link rel="stylesheet" href="asset.php?file=style.css">
  18. </head>
  19. <body>
  20. <header>
  21. <div class="wrapper">
  22. <a href="."><?= $title ?></a>
  23. <form action="search.php">
  24. <input name="query" placeholder="Search...">
  25. </form>
  26. </div>
  27. </header>
  28. <main>
  29. <div class="wrapper">