40 lines
1.5 KiB
HTML
Executable file
40 lines
1.5 KiB
HTML
Executable file
<html>
|
|
<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">
|
|
{% if not search_type %}
|
|
<link rel="search" href="opensearch.xml" type="application/opensearchdescription+xml" title="RaveSearch">
|
|
{% else %}
|
|
<link rel="search" href="opensearch.xml?tbm={{ search_type }}" type="application/opensearchdescription+xml" title="RaveSearch ({{ search_name }})">
|
|
{% endif %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="referrer" content="no-referrer">
|
|
<link rel="stylesheet" href="{{ cb_url('logo.css') }}">
|
|
<link rel="stylesheet" href="{{ cb_url('input.css') }}">
|
|
<link rel="stylesheet" href="{{ cb_url('search.css') }}">
|
|
<link rel="stylesheet" href="{{ cb_url('header.css') }}">
|
|
|
|
<style>
|
|
@import "{{ cb_url('dark-theme.css') }}";
|
|
</style>
|
|
|
|
<title>{{ clean_query(query) }} - RaveSearch</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>
|
|
{% include 'footer.html' %}
|
|
{% if autocomplete_enabled == '1' %}
|
|
<script src="{{ cb_url('autocomplete.js') }}"></script>
|
|
{% endif %}
|
|
<script src="{{ cb_url('utils.js') }}"></script>
|
|
<script src="{{ cb_url('keyboard.js') }}"></script>
|
|
<script src="{{ cb_url('currency.js') }}"></script>
|
|
</html>
|