22 lines
718 B
HTML
22 lines
718 B
HTML
|
<!-- layouts/partials/search.html -->
|
||
|
<form id="search__form" class="noscript" method="GET" action="https://duckduckgo.com/" data-language-prefix="{{ site.LanguagePrefix }}">
|
||
|
<div class="search__bar">
|
||
|
<input id="search__input" class="muted" name="q" tabindex="0" autocomplete="off" {{ with site.BaseURL }}value="Ctrl-/ to search"{{ end }} placeholder="{{ i18n "search" }}">
|
||
|
<!-- label id="search__button" for="search__input" class="icon" type="button"><span>⌕</span></label>-->
|
||
|
</div>
|
||
|
<div id="search__results" class="articles-list"></div>
|
||
|
</form>
|
||
|
<script src="{{ "/scripts/askolonion/askolonion.js" }}"></script>
|
||
|
|
||
|
|
||
|
|
||
|
<style>
|
||
|
#search__form {
|
||
|
float: right;
|
||
|
padding: 30px;
|
||
|
}
|
||
|
|
||
|
#search__input {
|
||
|
}
|
||
|
</style>
|