mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	To facilitate translation of the user documentation we move the templating logic outside of the user documentation.
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "oscar/base.html" %}
 | 
						|
{% block title %}{{ _('about') }} - {% endblock %}
 | 
						|
{% block content %}
 | 
						|
{{ help.about | safe }}
 | 
						|
{% include "__common__/aboutextend.html" ignore missing %}
 | 
						|
{% endblock %}
 |