Update BASE.HTML To Use Title Case In Links

Simply makes cosmetic changes so that the links on the search page use Title Case.
This commit is contained in:
Wormuth Household 2024-03-25 14:57:09 -04:00 committed by GitHub
parent b21aaa8907
commit 26abcd7a94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,18 +64,18 @@
</main> </main>
<footer> <footer>
<p> <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="{{ searx_git_url }}">{{ _('Source Code') }}</a>
| <a href="{{ get_setting('brand.issue_url') }}">{{ _('Issue tracker') }}</a> | <a href="{{ get_setting('brand.issue_url') }}">{{ _('Issue Tracker') }}</a>
{% if enable_metrics %}| <a href="{{ url_for('stats') }}">{{ _('Engine stats') }}</a>{% endif %} {% if enable_metrics %}| <a href="{{ url_for('stats') }}">{{ _('Engine Stats') }}</a>{% endif %}
{% if get_setting('brand.public_instances') %} {% if get_setting('brand.public_instances') %}
| <a href="{{ get_setting('brand.public_instances') }}">{{ _('Public instances') }}</a> | <a href="{{ get_setting('brand.public_instances') }}">{{ _('Public Instances') }}</a>
{% endif %} {% endif %}
{% if get_setting('general.privacypolicy_url') %} {% if get_setting('general.privacypolicy_url') %}
| <a href="{{ get_setting('general.privacypolicy_url') }}">{{ _('Privacy policy') }}</a> | <a href="{{ get_setting('general.privacypolicy_url') }}">{{ _('Privacy Policy') }}</a>
{% endif %} {% endif %}
{% if get_setting('general.contact_url') %} {% if get_setting('general.contact_url') %}
| <a href="{{ get_setting('general.contact_url') }}">{{ _('Contact instance maintainer') }}</a> | <a href="{{ get_setting('general.contact_url') }}">{{ _('Contact Instance Maintainer') }}</a>
{% endif %} {% endif %}
{% for title, link in get_setting('brand.custom.links').items() %} {% for title, link in get_setting('brand.custom.links').items() %}
| <a href="{{ link }}">{{ _(title) }}</a> | <a href="{{ link }}">{{ _(title) }}</a>