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-03-11 06:04:36 -03:00
|
|
|
<link rel="stylesheet" type="text/css" href="static/css/styles.css"/>
|
2022-02-25 06:42:32 -03:00
|
|
|
<link title="LibreX search" type="application/opensearchdescription+xml" href="/opensearch.xml?method=POST" rel="search"/>
|
|
|
|
<link rel="shortcut icon" href="static/images/librex.png" />
|
2022-03-09 09:18:24 -03:00
|
|
|
|
2022-03-24 07:28:12 -03:00
|
|
|
<link rel="stylesheet" type="text/css" href="
|
|
|
|
<?php
|
|
|
|
echo "static/css/";
|
|
|
|
if (isset($_COOKIE["theme"]) || isset($_REQUEST["theme"]))
|
|
|
|
echo (isset($_COOKIE["theme"]) ? $_COOKIE["theme"] : $_REQUEST["theme"]) . ".css";
|
|
|
|
else
|
|
|
|
echo "dark.css";
|
|
|
|
?>
|
|
|
|
"/>
|