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-03 16:24:46 -03:00
|
|
|
<link rel="stylesheet" type="text/css" href="static/css/styles.css"/>
|
2023-08-02 10:18:21 -04:00
|
|
|
<link title="LibreY 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
|
2023-08-22 19:51:23 -04:00
|
|
|
$theme = $_REQUEST["theme"] ?? trim(htmlspecialchars($_COOKIE["theme"] ?? "dark"));
|
|
|
|
echo "static/css/" . $theme . ".css";
|
2022-05-11 14:08:16 -04:00
|
|
|
?>"/>
|