mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			341 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			341 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'simple/page_with_header.html' %}
 | 
						|
{% block title %}{{ page.title }} - {% endblock %}
 | 
						|
{% block content %}
 | 
						|
<ul class="tabs">
 | 
						|
{% for name, page in all_pages %}
 | 
						|
  <li>
 | 
						|
    <a href="{{name}}" {% if name == page_filename %}class="active"{% endif %}>{{page.title}}</a>
 | 
						|
  </li>
 | 
						|
{% endfor %}
 | 
						|
</ul>
 | 
						|
{{ page.content | safe }}
 | 
						|
{% endblock %}
 |