2020-04-07 20:12:16 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2020-10-29 15:09:31 +00:00
|
|
|
<link rel="shortcut icon" href="static/img/favicon.ico" type="image/x-icon">
|
|
|
|
<link rel="icon" href="static/img/favicon.ico" type="image/x-icon">
|
|
|
|
<link rel="search" href="opensearch.xml" type="application/opensearchdescription+xml" title="Whoogle Search">
|
2020-04-07 20:12:16 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2020-05-06 00:28:43 +00:00
|
|
|
<meta name="referrer" content="no-referrer">
|
2021-04-21 15:38:19 +00:00
|
|
|
<link rel="stylesheet" href="static/css/input.css">
|
2021-03-22 14:59:32 +00:00
|
|
|
<link rel="stylesheet" href="static/css/search.css">
|
2021-03-21 01:21:41 +00:00
|
|
|
<link rel="stylesheet" href="static/css/variables.css">
|
2020-10-29 15:09:31 +00:00
|
|
|
<link rel="stylesheet" href="static/css/header.css">
|
2021-03-21 01:21:41 +00:00
|
|
|
<link rel="stylesheet" href="static/css/{{ 'dark' if config.dark else 'light' }}-theme.css"/>
|
|
|
|
<style>{{ config.style }}</style>
|
2020-05-05 00:00:43 +00:00
|
|
|
<title>{{ query }} - Whoogle Search</title>
|
2020-04-07 20:12:16 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-06-11 19:25:23 +00:00
|
|
|
{{ search_header|safe }}
|
|
|
|
{{ response|safe }}
|
2020-04-07 20:12:16 +00:00
|
|
|
</body>
|
2020-06-11 19:25:23 +00:00
|
|
|
<footer>
|
2021-04-09 15:00:02 +00:00
|
|
|
<p style="color: {{ 'var(--whoogle-dark-text)' if config.dark else 'var(--whoogle-text)' }};">
|
2020-06-11 19:25:23 +00:00
|
|
|
Whoogle Search v{{ version_number }} ||
|
2021-05-24 21:03:02 +00:00
|
|
|
<a id="gh-link" href="https://github.com/benbusby/whoogle-search">{{ translation['github-link'] }}</a>
|
2020-06-11 19:25:23 +00:00
|
|
|
</p>
|
|
|
|
</footer>
|
2021-02-14 15:50:53 +00:00
|
|
|
<script src="static/js/autocomplete.js"></script>
|
|
|
|
<script src="static/js/utils.js"></script>
|
|
|
|
<script src="static/js/keyboard.js"></script>
|
2020-04-07 20:12:16 +00:00
|
|
|
</html>
|