2020-04-07 20:12:16 +00:00
|
|
|
<html>
|
2021-10-27 18:30:55 +00:00
|
|
|
<head>
|
|
|
|
<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">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="referrer" content="no-referrer">
|
2021-11-24 19:38:56 +00:00
|
|
|
<link rel="stylesheet" href="{{ cb_url('logo.css') }}">
|
2021-10-27 18:30:55 +00:00
|
|
|
<link rel="stylesheet" href="{{ cb_url('input.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ cb_url('search.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ cb_url('header.css') }}">
|
|
|
|
{% if config.theme %}
|
|
|
|
{% if config.theme == 'system' %}
|
2021-06-30 23:00:01 +00:00
|
|
|
<style>
|
|
|
|
@import "{{ cb_url('light-theme.css') }}" screen;
|
|
|
|
@import "{{ cb_url('dark-theme.css') }}" screen and (prefers-color-scheme: dark);
|
|
|
|
</style>
|
2021-06-28 14:26:51 +00:00
|
|
|
{% else %}
|
2021-10-27 18:30:55 +00:00
|
|
|
<link rel="stylesheet" href="{{ cb_url(config.theme + '-theme.css') }}"/>
|
2021-06-28 14:26:51 +00:00
|
|
|
{% endif %}
|
2021-10-27 18:30:55 +00:00
|
|
|
{% else %}
|
|
|
|
<link rel="stylesheet" href="{{ cb_url(('dark' if config.dark else 'light') + '-theme.css') }}"/>
|
2021-06-15 14:14:42 +00:00
|
|
|
{% endif %}
|
2021-10-27 18:30:55 +00:00
|
|
|
<style>{{ config.style }}</style>
|
|
|
|
<title>{{ clean_query(query) }} - Whoogle Search</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ search_header|safe }}
|
|
|
|
{% if is_translation %}
|
|
|
|
<iframe
|
|
|
|
id="lingva-iframe"
|
|
|
|
src="{{ lingva_url }}/auto/{{ translate_to }}/{{ translate_str }}">
|
|
|
|
</iframe>
|
|
|
|
{% endif %}
|
|
|
|
{{ response|safe }}
|
|
|
|
</body>
|
2021-11-02 16:35:40 +00:00
|
|
|
{% include 'footer.html' %}
|
2022-01-18 20:39:56 +00:00
|
|
|
{% if autocomplete_enabled == '1' %}
|
|
|
|
<script src="{{ cb_url('autocomplete.js') }}"></script>
|
|
|
|
{% endif %}
|
2021-10-27 18:30:55 +00:00
|
|
|
<script src="{{ cb_url('utils.js') }}"></script>
|
|
|
|
<script src="{{ cb_url('keyboard.js') }}"></script>
|
2021-12-07 05:56:13 +00:00
|
|
|
<script src="{{ cb_url('currency.js') }}"></script>
|
2020-04-07 20:12:16 +00:00
|
|
|
</html>
|