calibre/manual/templates/search.html
2021-03-16 12:02:01 +05:30

24 lines
729 B
HTML

{#
basic/search.html
~~~~~~~~~~~~~~~~~
Template for the search page, using google custom search
#}
{% extends "layout.html" %}
{% set title = _('Search') %}
{% block body %}
<h1 id="search-documentation">{{ _('Search') }}</h1>
<noscript>
{% trans %}Please activate JavaScript to enable the search
functionality.{% endtrans %}
</noscript>
<p>
{% trans %}From here you can search the User Manual. Enter your search
words into the box below and press "Enter"
{% endtrans %}
</p>
<div class="gcse-search" data-enableHistory="true">
<script type="text/javascript" async src="https://cse.google.com/cse.js?cx=partner-pub-5939552585043235:2303012306"></script>
</div>
{% endblock %}