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