Complete initial branding work

This commit is contained in:
Moïse KM 2023-04-06 04:13:51 -04:00
parent b3b8d8e60e
commit 790414bced
15 changed files with 559 additions and 54 deletions

View file

@ -2,8 +2,8 @@
<html class="no-js theme-{{ preferences.get_value('simple_style') or 'auto' }} center-aligment-{{ preferences.get_value('center_alignment') and 'yes' or 'no' }}" lang="{{ locale_rfc5646 }}" {% if rtl %} dir="rtl"{% endif %}>
<head>
<meta charset="UTF-8" />
<meta name="description" content="SearXNG — a privacy-respecting, open metasearch engine">
<meta name="keywords" content="SearXNG, search, search engine, metasearch, meta search">
<meta name="description" content="Fufusoup — a privacy-respecting, open metasearch engine">
<meta name="keywords" content="Fufusoup, search, search engine, metasearch, meta search">
<meta name="generator" content="searxng/{{ searx_version }}">
<meta name="referrer" content="no-referrer">
<meta name="robots" content="noarchive">
@ -17,6 +17,7 @@
{% else %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/searxng.min.css') }}" type="text/css" media="screen" />
{% endif %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/custom.css') }}" type="text/css" media="screen" />
{% block styles %}{% endblock %}
<!--[if gte IE 9]>-->
<script src="{{ url_for('static', filename='js/searxng.head.min.js') }}" client_settings="{{ client_settings }}"></script>
@ -24,8 +25,8 @@
{% block head %}
<link title="{{ instance_name }}" type="application/opensearchdescription+xml" rel="search" href="{{ opensearch_url }}"/>
{% endblock %}
<link rel="icon" href="{{ url_for('static', filename='img/favicon.png') }}" sizes="any">
<link rel="icon" href="{{ url_for('static', filename='img/favicon.svg') }}" type="image/svg+xml">
<link rel="icon" href="{{ url_for('static', filename='img/fufusoup-logo-blue-bg.png') }}" sizes="any">
<link rel="icon" href="{{ url_for('static', filename='img/fufusoup-logo-blue-bg.png') }}" type="image/svg+xml">
</head>
<body class="{{ endpoint }}_endpoint" >
<main id="main_{{ self._TemplateReference__context.name|replace("simple/", "")|replace(".html", "") }}" class="{{body_class}}">
@ -43,15 +44,15 @@
<nav id="links_on_top">
{%- from 'simple/icons.html' import icon_big -%}
{%- block linkto_about -%}
<a href="{{ url_for('info', pagename='about') }}" class="link_on_top_about">{{ icon_big('information-circle-outline') }}<span>{{ _('About') }}</span></a>
<a href="{{ url_for('info', pagename='about') }}" class="link_on_top_about"><span>{{ _('About') }}</span></a>
{%- endblock -%}
{%- block linkto_donate -%}
{%- if donation_url -%}
<a href="{{ donation_url }}" class="link_on_top_donate">{{ icon_big('heart-outline') }}<span>{{ _('Donate') }}</span></a>
<a href="{{ url_for('info', pagename='donate') }}" class="link_on_top_donate"><span>{{ _('Donate') }}</span></a>
{%- endif -%}
{%- endblock -%}
{%- block linkto_preferences -%}
<a href="{{ url_for('preferences') }}" class="link_on_top_preferences">{{ icon_big('menu-outline') }}<span>{{ _('Preferences') }}</span></a>
<a href="{{ url_for('preferences') }}" class="link_on_top_preferences">{{ icon_big('menu-outline') }}</a>
{%- endblock -%}
</nav>
{% block header %}
@ -61,20 +62,30 @@
</main>
<footer>
<p>
Fufusoup a privacy-respecting, open source metasearch engine
based on SearXNG
and made available by Moise KM<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 %}
{% if get_setting('brand.public_instances') %}
| <a href="{{ get_setting('brand.public_instances') }}">{{ _('Public instances') }}</a>
{% endif %}
Fufusoup is a privacy-respecting open source metasearch engine based on
<a href="https://github.com/searxng/searxng/" target="_blank">SearXNG,</a>
built, deployed, and operated by
<a href="https://mkm.technology/" target="_blank">Moïse KM</a>
<br/>
<a href="{{ url_for('info', pagename='about') }}">{{ _('About') }} </a>
{%- if donation_url -%}
| <a href="{{ url_for('info', pagename='donate') }}">{{ _('Donate') }} </a>
{%- endif -%}
| <a href="{{ url_for('preferences') }}">{{ _('Preferences') }}</a>
{% if get_setting('general.privacypolicy_url') %}
| <a href="{{ get_setting('general.privacypolicy_url') }}">{{ _('Privacy policy') }}</a>
{% endif %}
| <a href="{{ url_for('info', pagename='privacy-policy') }}">{{ _('Privacy policy') }}</a>
| <a href="https://github.com/mkmtech7/fufusoup/" target="_blank">{{ _('Source code') }}</a>
| <a href="{{ get_setting('brand.issue_url') }}" target="_blank">{{ _('Issue tracker') }}</a>
{% if enable_metrics %}| <a href="{{ url_for('stats') }}">{{ _('Engine stats') }}</a>{% endif %}
{% if get_setting('brand.public_instances') %}
| <a href="{{ get_setting('brand.public_instances') }}" target="_blank">{{ _('Similar instances') }}</a>
{% endif %}
{% if get_setting('general.contact_url') %}
| <a href="{{ get_setting('general.contact_url') }}">{{ _('Contact instance maintainer') }}</a>
| <a href="{{ get_setting('general.contact_url') }}" target="_blank">{{ _('Contact instance maintainer') }}</a>
{% endif %}
</p>
</footer>