[mod] UI footer: correct capitalization of "SearXNG" in base.html

This commit is contained in:
benpiano800 2025-05-29 14:59:06 -05:00 committed by Markus Heiser
parent 1b424b8d54
commit 37d851fb23
2 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@
</main>
<footer>
<p>
{{ _('Powered by') }} <a href="{{ url_for('info', pagename='about') }}">searxng</a> - {{ searx_version }} — {{ _('a privacy-respecting, open metasearch engine') }}<br>
{{ _('Powered by') }} <a href="{{ url_for('info', pagename='about') }}">SearXNG</a> - {{ searx_version }} — {{ _('a privacy-respecting, open metasearch engine') }}<br>
<a href="{{ searx_git_url }}">{{ _('Source code') }}</a>
| <a href="{{ get_setting('brand.issue_url') }}">{{ _('Issue tracker') }}</a>
{% if enable_metrics %}| <a href="{{ url_for('stats') }}">{{ _('Engine stats') }}</a>{% endif %}

View File

@ -9,7 +9,7 @@ url = "http://localhost:11111/"
def test_index(browser):
# Visit URL
browser.visit(url)
assert browser.is_text_present('searxng')
assert browser.is_text_present('SearXNG')
def test_404(browser):
@ -20,7 +20,7 @@ def test_404(browser):
def test_about(browser):
browser.visit(url)
browser.links.find_by_text('searxng').click()
browser.links.find_by_text('SearXNG').click()
assert browser.is_text_present('Why use it?')