mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-22 22:12:24 +01:00
Add contact and donate links to the footer
This commit is contained in:
parent
686d285731
commit
3a794fecbf
@ -41,3 +41,4 @@ You can donate to rubenwardy to cover ContentDB's costs and support future devel
|
|||||||
For more information about what the cost of ContentDB and what rubenwardy does, see his donation page:
|
For more information about what the cost of ContentDB and what rubenwardy does, see his donation page:
|
||||||
|
|
||||||
<a href="https://rubenwardy.com/donate/" class="btn btn-primary me-1">Donate</a>
|
<a href="https://rubenwardy.com/donate/" class="btn btn-primary me-1">Donate</a>
|
||||||
|
<a href="/donate/" class="btn btn-secondary">Support Creators</a>
|
||||||
|
@ -244,8 +244,10 @@
|
|||||||
<ul class="list-inline my-1">
|
<ul class="list-inline my-1">
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='help') }}">{{ _("Help") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='help') }}">{{ _("Help") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='about') }}">{{ _("About") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='about') }}">{{ _("About") }}</a></li>
|
||||||
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='help/contact_us') }}">{{ _("Contact Us") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='rules') }}">{{ _("Rules") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='rules') }}">{{ _("Rules") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='policy_and_guidance') }}">{{ _("Policy and Guidance") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='policy_and_guidance') }}">{{ _("Policy and Guidance") }}</a></li>
|
||||||
|
<li class="list-inline-item"><a href="{{ url_for('donate.donate') }}#contentdb">{{ _("Donate") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='help/api') }}">{{ _("API") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='help/api') }}">{{ _("API") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='privacy_policy') }}">{{ _("Privacy Policy") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='privacy_policy') }}">{{ _("Privacy Policy") }}</a></li>
|
||||||
{% if request.endpoint != "flatpage" and request.endpoint != "report.report" %}
|
{% if request.endpoint != "flatpage" and request.endpoint != "report.report" %}
|
||||||
@ -254,7 +256,7 @@
|
|||||||
<li class="list-inline-item"><a href="{{ url_for('users.list_all') }}">{{ _("User List") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('users.list_all') }}">{{ _("User List") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('threads.list_all') }}">{{ _("Threads") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('threads.list_all') }}">{{ _("Threads") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('collections.list_all') }}">{{ _("Collections") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('collections.list_all') }}">{{ _("Collections") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('donate.donate') }}">{{ _("Support Packages") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('donate.donate') }}">{{ _("Support Creators") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('translate.translate') }}">{{ _("Translate Packages") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('translate.translate') }}">{{ _("Translate Packages") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="https://github.com/minetest/contentdb">{{ _("Source Code") }}</a></li>
|
<li class="list-inline-item"><a href="https://github.com/minetest/contentdb">{{ _("Source Code") }}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block title -%}
|
{% block title -%}
|
||||||
{{ _("Support packages") }}
|
{{ _("Support Creators") }}
|
||||||
{%- endblock %}
|
{%- endblock %}
|
||||||
|
|
||||||
{% block description -%}
|
{% block description -%}
|
||||||
@ -59,6 +59,17 @@
|
|||||||
{{ self.description() }}
|
{{ self.description() }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<h2 id="contentdb">{{ _("Support ContentDB") }}</h2>
|
||||||
|
<p>
|
||||||
|
{{ _("You can donate to rubenwardy to cover ContentDB's costs and support future development.") }}
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
{{ _("For more information about what the cost of ContentDB and what rubenwardy does, see his donation page:") }}
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="https://rubenwardy.com/donate/" class="btn btn-primary me-1">{{ _("Donate") }}</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
<h2>{{ _("Based on your reviews / favorites") }}</h2>
|
<h2>{{ _("Based on your reviews / favorites") }}</h2>
|
||||||
{% if reviewed_packages %}
|
{% if reviewed_packages %}
|
||||||
{{ render_packages(reviewed_packages) }}
|
{{ render_packages(reviewed_packages) }}
|
||||||
|
Loading…
Reference in New Issue
Block a user