2020-05-24 23:03:11 +03:00
|
|
|
{% if mobile %}
|
|
|
|
<header>
|
2021-06-28 17:26:51 +03:00
|
|
|
<div class="bz1lBb header-div">
|
2021-04-22 23:23:00 +03:00
|
|
|
<form class="search-form Pg70bf" id="search-form" method="POST">
|
2021-06-28 17:26:51 +03:00
|
|
|
<a class="logo-link mobile-logo" href="/">
|
|
|
|
<div id="mobile-header-logo">
|
2021-04-05 17:37:39 +03:00
|
|
|
{{ logo|safe }}
|
|
|
|
</div>
|
2020-05-24 23:03:11 +03:00
|
|
|
</a>
|
2021-06-28 17:26:51 +03:00
|
|
|
<div class="H0PQec mobile-input-div">
|
2020-05-24 23:03:11 +03:00
|
|
|
<div class="sbc esbc autocomplete">
|
2021-04-21 17:48:26 +03:00
|
|
|
<input
|
|
|
|
id="search-bar"
|
2021-06-28 17:26:51 +03:00
|
|
|
class="mobile-search-bar"
|
2021-04-21 17:48:26 +03:00
|
|
|
autocapitalize="none"
|
|
|
|
autocomplete="off"
|
|
|
|
autocorrect="off"
|
|
|
|
spellcheck="false"
|
|
|
|
class="noHIxc"
|
|
|
|
name="q"
|
|
|
|
type="text"
|
2021-08-31 01:10:07 +03:00
|
|
|
value="{{ clean_query(query) }}"
|
|
|
|
dir="auto">
|
2021-06-28 17:26:51 +03:00
|
|
|
<input id="search-reset" type="reset" value="x">
|
2020-05-25 19:53:15 +03:00
|
|
|
<input name="tbm" value="{{ search_type }}" style="display: none">
|
2021-01-19 19:11:13 +03:00
|
|
|
<input type="submit" style="display: none;">
|
2020-05-24 23:03:11 +03:00
|
|
|
<div class="sc"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
{% else %}
|
|
|
|
<header>
|
|
|
|
<div class="logo-div">
|
2020-11-11 08:40:49 +03:00
|
|
|
<a class="logo-link" href="/">
|
2021-06-28 17:26:51 +03:00
|
|
|
<div class="desktop-header-logo">
|
2021-04-05 17:37:39 +03:00
|
|
|
{{ logo|safe }}
|
|
|
|
</div>
|
2020-05-24 23:03:11 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="search-div">
|
|
|
|
<form id="search-form" class="search-form" id="sf" method="POST">
|
2021-06-28 17:26:51 +03:00
|
|
|
<div class="autocomplete header-autocomplete">
|
2020-05-24 23:03:11 +03:00
|
|
|
<div style="width: 100%; display: flex">
|
2021-04-21 17:48:26 +03:00
|
|
|
<input
|
|
|
|
id="search-bar"
|
|
|
|
autocapitalize="none"
|
|
|
|
autocomplete="off"
|
|
|
|
autocorrect="off"
|
2021-04-22 23:23:00 +03:00
|
|
|
class="search-bar-desktop noHIxc"
|
2021-04-21 17:48:26 +03:00
|
|
|
name="q"
|
|
|
|
spellcheck="false"
|
|
|
|
type="text"
|
2021-08-31 01:10:07 +03:00
|
|
|
value="{{ clean_query(query) }}"
|
|
|
|
dir="auto">
|
2020-05-25 19:53:15 +03:00
|
|
|
<input name="tbm" value="{{ search_type }}" style="display: none">
|
2021-01-19 19:11:13 +03:00
|
|
|
<input type="submit" style="display: none;">
|
2020-05-24 23:03:11 +03:00
|
|
|
<div class="sc"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
{% endif %}
|
|
|
|
|
2021-07-01 02:00:01 +03:00
|
|
|
<script type="text/javascript" src="{{ cb_url('header.js') }}"></script>
|