mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	Merge pull request #560 from return42/fix-page-title
[fix] query_in_title: add missing space in title
This commit is contained in:
		
						commit
						fd8982d53d
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		|  | @ -16,7 +16,7 @@ | |||
| {%- endmacro %} | ||||
| {%- macro search_url() %}{{ url_for('search', _external=True) }}?q={{ q|urlencode }}{% if selected_categories %}&categories={{ selected_categories|join(",") | replace(' ','+') }}{% endif %}{% if pageno > 1 %}&pageno={{ pageno }}{% endif %}{% if time_range %}&time_range={{ time_range }}{% endif %}{% if current_language != 'all' %}&language={{ current_language }}{% endif %}{% endmacro -%} | ||||
| 
 | ||||
| {% block title %}{% if query_in_title %}{{- q|e -}} - {% endif %}{% endblock %} | ||||
| {% block title %}{% if query_in_title %}{{- q|e }} - {% endif %}{% endblock %} | ||||
| {% block meta %}{{"    "}}<link rel="alternate" type="application/rss+xml" title="Searx search: {{ q|e }}" href="{{ search_url() }}&format=rss">{% endblock %} | ||||
| {% block content %} | ||||
|     {% include 'oscar/search.html' %} | ||||
|  |  | |||
|  | @ -7,7 +7,7 @@ | |||
|         {% endfor %} | ||||
|     {% endfor %} | ||||
| {%- endmacro %} | ||||
| {% block title %}{% if query_in_title %}{{- q|e -}} - {% endif %}{% endblock %} | ||||
| {% block title %}{% if query_in_title %}{{- q|e }} - {% endif %}{% endblock %} | ||||
| {% block meta %}<link rel="alternate" type="application/rss+xml" title="Searx search: {{ q|e }}" href="{{ url_for('search', _external=True) }}?q={{ q|urlencode }}&categories={{ selected_categories|join(",") | replace(' ','+') }}&pageno={{ pageno }}&time_range={{ time_range }}&language={{ current_language }}&safesearch={{ safesearch }}&format=rss">{% endblock %} | ||||
| {% block content %} | ||||
| <nav id="linkto_preferences"><a href="{{ url_for('preferences') }}">{{ icon_big('menu-outline') }}</a></nav> | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Markus Heiser
						Markus Heiser