mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
24 lines
731 B
HTML
24 lines
731 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 click "search".
|
|
{% 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 %}
|