mirror of
				https://github.com/kovidgoyal/calibre.git
				synced 2025-10-30 18:22:25 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			729 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			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 %}
 |