mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			587 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			587 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "legacy/base.html" %}
 | |
| {% block content %}
 | |
| <div class="center">
 | |
|     <div class="title"><h1>searx</h1></div>
 | |
|     {% include 'legacy/search.html' %}
 | |
|     <p class="top_margin">
 | |
|     	{% if rtl %}
 | |
|     	<a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
 | |
|     	{% endif %}
 | |
|         <a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a>
 | |
|         {% if not rtl %}
 | |
|         <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
 | |
|         {% endif %}
 | |
|     </p>
 | |
| </div>
 | |
| {% include 'legacy/github_ribbon.html' %}
 | |
| {% endblock %}
 | |
| 
 | 
