2016-08-07 19:01:56 +03:00
|
|
|
<!--
|
2017-01-06 21:11:18 +03:00
|
|
|
Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
2016-08-07 19:01:56 +03:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to
|
|
|
|
deal in the Software without restriction, including without limitation the
|
|
|
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
IN THE SOFTWARE.
|
|
|
|
-->
|
|
|
|
|
2017-01-13 02:31:37 +03:00
|
|
|
{% import "partials/language.html" as lang %}
|
2017-01-06 20:48:32 +03:00
|
|
|
|
2016-09-23 12:56:25 +03:00
|
|
|
<!-- Search interface -->
|
2017-07-25 16:58:15 +03:00
|
|
|
<div class="md-search" data-md-component="search" role="dialog">
|
2017-04-22 15:10:32 +03:00
|
|
|
<label class="md-search__overlay" for="search"></label>
|
2016-09-23 12:56:25 +03:00
|
|
|
<div class="md-search__inner">
|
2016-12-15 17:55:40 +03:00
|
|
|
<form class="md-search__form" name="search">
|
|
|
|
<input type="text" class="md-search__input" name="query"
|
2017-03-19 21:49:19 +03:00
|
|
|
required placeholder="{{ lang.t('search.placeholder') }}"
|
2017-07-25 16:58:15 +03:00
|
|
|
autocapitalize="off" autocorrect="off" autocomplete="off"
|
|
|
|
spellcheck="false" data-md-component="query" />
|
2016-10-23 20:31:54 +03:00
|
|
|
<label class="md-icon md-search__icon" for="search"></label>
|
2017-03-21 17:27:45 +03:00
|
|
|
<button type="reset" class="md-icon md-search__icon"
|
2017-08-29 18:23:30 +03:00
|
|
|
data-md-component="reset"><!-- close --></button>
|
2016-09-23 12:56:25 +03:00
|
|
|
</form>
|
2016-10-23 11:21:37 +03:00
|
|
|
<div class="md-search__output">
|
2016-12-29 16:19:26 +03:00
|
|
|
<div class="md-search__scrollwrap" data-md-scrollfix>
|
2017-06-01 01:40:10 +03:00
|
|
|
<div class="md-search-result" data-md-component="result"
|
2017-07-27 23:48:47 +03:00
|
|
|
data-md-lang-search="{{ lang.t('search.languages') }}"
|
|
|
|
data-md-lang-tokenizer="{{ lang.t('search.tokenizer') }}">
|
2017-03-16 14:11:00 +03:00
|
|
|
<div class="md-search-result__meta"
|
2017-03-16 18:04:43 +03:00
|
|
|
data-md-lang-result-none="{{ lang.t('search.result.none') }}"
|
|
|
|
data-md-lang-result-one="{{ lang.t('search.result.one') }}"
|
|
|
|
data-md-lang-result-other="{{ lang.t('search.result.other') }}">
|
2017-06-01 23:17:08 +03:00
|
|
|
{{ lang.t("search.result.placeholder") }}
|
2017-03-16 14:11:00 +03:00
|
|
|
</div>
|
|
|
|
<ol class="md-search-result__list"></ol>
|
|
|
|
</div>
|
2016-10-23 11:21:37 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-08-07 19:01:56 +03:00
|
|
|
</div>
|
2016-10-23 11:21:37 +03:00
|
|
|
</div>
|