mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| {% block content %}
 | |
| <form method="post" action="">
 | |
|     <input type="text" name="q" value="{{ q }}"/>
 | |
|     <input type="submit" value="search" />
 | |
| </form>
 | |
| {% for result in results %}
 | |
|     <p>{{ result|safe }}</p>
 | |
| {% endfor %}
 | |
| {% endblock %}
 | 
