simpletheme/layouts/partials/search.html
J S 06eba57815 feat[layouts/ static/]: Added search functionality
Ripped off the onion theme from heracl.es
2023-10-15 00:17:04 -04:00

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>