mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	 a71b326d9e
			
		
	
	
		a71b326d9e
		
	
	
	
	
		
			
			- more smartphone friendly - more text browser friendly - next button always on the right - in case of small screen supporting touch event, categories are displayed on one line with a scroll
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			425 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			425 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "default/base.html" %}
 | |
| {% block content %}
 | |
| <div class="center">
 | |
|     <div class="title"><h1>searx</h1></div>
 | |
|     {% include 'default/search.html' %}
 | |
|     <p class="top_margin">
 | |
|         <a href="{{ url_for('about') }}" class="hmarg">{{ _('about') }}</a>
 | |
|         <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
 | |
|     </p>
 | |
| </div>
 | |
| {% include 'default/github_ribbon.html' %}
 | |
| {% endblock %}
 | |
| 
 |