2022-02-25 10:42:32 +01:00
|
|
|
<!DOCTYPE html >
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
2022-03-01 17:28:37 +01:00
|
|
|
<meta charset="UTF-8"/>
|
2022-02-25 10:42:32 +01:00
|
|
|
<meta name="description" content="A privacy respecting meta search engine."/>
|
|
|
|
<meta name="referrer" content="no-referrer"/>
|
2022-12-03 19:24:46 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="static/css/styles.css"/>
|
2023-04-30 14:56:55 +02:00
|
|
|
<link title="LibreX search" type="application/opensearchdescription+xml" href="opensearch.xml?method=POST" rel="search"/>
|
2022-05-11 20:08:16 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?php
|
2022-12-28 10:20:38 +00:00
|
|
|
echo "static/css/";
|
2023-02-05 09:55:28 +01:00
|
|
|
if (isset($_COOKIE["theme"]))
|
|
|
|
echo htmlspecialchars($_COOKIE["theme"] . ".css");
|
2022-03-24 11:28:12 +01:00
|
|
|
else
|
2022-10-25 13:02:01 +02:00
|
|
|
echo "dark.css";
|
2022-05-11 20:08:16 +02:00
|
|
|
?>"/>
|