mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
* update copyright symbols to unicode * clean up version screen/copyright notice * small change to make commands more similar * update imports to appease isort * fix test * update one more file merged since PR was open
34 lines
840 B
HTML
34 lines
840 B
HTML
<!--
|
|
Copyright © 2012-2022 jrnl contributors
|
|
License: https://www.gnu.org/licenses/gpl-3.0.html
|
|
-->
|
|
|
|
{% extends "main.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div role="search">
|
|
<form id ="content_search" class="wy-form mkdocs-search" action="{{ base_url }}/search.html" method="get">
|
|
|
|
<span role="status" aria-live="polite" class="ui-helper-hidden-accessible"></span>
|
|
<input
|
|
name="q"
|
|
id="mkdocs-search-query"
|
|
type="text"
|
|
class="search_input search-query ui-autocomplete-input"
|
|
placeholder="Search the Docs"
|
|
autocomplete="off"
|
|
autofocus
|
|
title="Type search term here"
|
|
>
|
|
<button class="icon icon-search" aria-label="submit"></button>
|
|
</form>
|
|
</div>
|
|
|
|
<h1 id="search">Results</h1>
|
|
|
|
<div id="mkdocs-search-results" class="search-results">
|
|
Searching...
|
|
</div>
|
|
|
|
{% endblock %}
|