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