header.php 730 B

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