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">
|
2020-10-29 15:09:31 +00:00
|
|
|
<link rel="stylesheet" href="static/css/{{ 'search-dark' if dark_mode else 'search' }}.css">
|
|
|
|
<link rel="stylesheet" href="static/css/header.css">
|
2020-09-14 19:29:58 +00:00
|
|
|
{% if dark_mode %}
|
2020-10-29 15:09:31 +00:00
|
|
|
<link rel="stylesheet" href="static/css/dark-theme.css"/>
|
2020-09-14 19:29:58 +00:00
|
|
|
{% endif %}
|
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>
|
|
|
|
<p style="color: {{ '#fff' if dark_mode else '#000' }};">
|
|
|
|
Whoogle Search v{{ version_number }} ||
|
|
|
|
<a style="color: #685e79" href="https://github.com/benbusby/whoogle-search">View on GitHub</a>
|
|
|
|
</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>
|