12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- require_once "../config/config.php";
- if (!isset($config["title"]))
- $config["title"] = "Tent";
- if (isset($title) && !empty($title))
- $title = $config["title"] . " · " . $title;
- else
- $title = $config["title"];
- header("Content-Security-Policy: default-src 'none'; form-action 'self'; img-src 'self' data:; media-src 'self'; style-src 'self' 'unsafe-inline'");
- ?>
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title><?= $title ?></title>
- <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⛺</text></svg>">
- <link rel="stylesheet" href="asset.php?file=style.css">
- </head>
- <body class="
- <?php
- if (isset($_COOKIE["theme"]) && in_array($_COOKIE["theme"], ["light", "dark"]))
- echo "theme-" . $_COOKIE["theme"];
- if (isset($_COOKIE["overflow"]) && $_COOKIE["overflow"] === "on")
- echo " overflow";
- ?>
- ">
- <header>
- <div class="wrapper">
- <a href="." title="Tent">
- ⛺
- </a>
- <form action="search.php">
- <input name="query" placeholder="Search..." required autofocus>
- </form>
- <?php
- $link = convert_tent_link("//" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
- if ($link)
- echo "<a href=\"" . $link . "\" title=\"Bandcamp\">🔗</a>";
- ?>
- <a href="settings.php" title="Settings">
- ⚙️
- </a>
- </div>
- </header>
- <main tabindex="-1">
- <div class="wrapper">
|