21 lines
688 B
HTML
21 lines
688 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 type="text" id="search__input" class="muted" name="q" tabindex="0" autocomplete="off" {{ with site.BaseURL }}value="Ctrl-Shift-L "{{ 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 {
|
|
|
|
}
|
|
|
|
#search__input {
|
|
}
|
|
</style>
|