2020-05-24 23:03:11 +03:00
|
|
|
{% if mobile %}
|
|
|
|
<header>
|
|
|
|
<div class="bz1lBb">
|
|
|
|
<form class="Pg70bf" id="search-form" method="POST">
|
|
|
|
<a class="logo-link mobile-logo"
|
2020-11-11 08:40:49 +03:00
|
|
|
href="/"
|
2020-05-24 23:03:11 +03:00
|
|
|
style="display:flex; justify-content:center; align-items:center; color:#685e79; font-size:18px; ">
|
2020-10-25 20:52:30 +03:00
|
|
|
<span style="color: #685e79">Whoogle</span>
|
2020-05-24 23:03:11 +03:00
|
|
|
</a>
|
|
|
|
<div class="H0PQec" style="width: 100%;">
|
|
|
|
<div class="sbc esbc autocomplete">
|
|
|
|
<input id="search-bar" autocapitalize="none" autocomplete="off" class="noHIxc" name="q"
|
2020-05-26 19:39:19 +03:00
|
|
|
style="background-color: {{ '#000' if dark_mode else '#fff' }};
|
|
|
|
color: {{ '#685e79' if dark_mode else '#000' }};
|
|
|
|
border: {{ '1px solid #685e79' if dark_mode else '' }}"
|
2020-06-02 21:54:47 +03:00
|
|
|
spellcheck="false" type="text" value="{{ query }}">
|
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="/">
|
2020-10-25 20:52:30 +03:00
|
|
|
<span style="color: #685e79">Whoogle</span>
|
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">
|
|
|
|
<div class="autocomplete" style="width: 100%; flex: 1">
|
|
|
|
<div style="width: 100%; display: flex">
|
|
|
|
<input id="search-bar" autocapitalize="none" autocomplete="off" class="noHIxc" name="q"
|
2020-06-02 21:54:47 +03:00
|
|
|
spellcheck="false" type="text" value="{{ query }}"
|
2020-05-26 19:39:19 +03:00
|
|
|
style="background-color: {{ '#000' if dark_mode else '#fff' }};
|
|
|
|
color: {{ '#685e79' if dark_mode else '#000' }};
|
|
|
|
border: {{ '1px solid #685e79' if dark_mode else '' }}">
|
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-03-07 22:04:05 +03:00
|
|
|
<script type="text/javascript" src="static/js/header.js"></script>
|