mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			485 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			485 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| {% block head %} {% endblock %}
 | |
| {% block content %}
 | |
| <div class="small">
 | |
|     {% include 'search.html' %}
 | |
| </div>
 | |
| <div id="results">
 | |
| <div>
 | |
|     Number of results: {{ number_of_results }}
 | |
| </div>
 | |
|     {% for result in results %}
 | |
|         {% if result['template'] %}
 | |
|             {% include 'result_templates/'+result['template'] %}
 | |
|         {% else %}
 | |
|             {% include 'result_templates/default.html' %}
 | |
|         {% endif %}
 | |
|     {% endfor %}
 | |
| </div>
 | |
| {% endblock %}
 | 
