mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 01:23:48 +01:00
Add meta tag to donate page
This commit is contained in:
parent
4c66b25e7c
commit
c2ab4ac308
@ -4,6 +4,17 @@
|
|||||||
{{ _("Support packages") }}
|
{{ _("Support packages") }}
|
||||||
{%- endblock %}
|
{%- endblock %}
|
||||||
|
|
||||||
|
{% block description -%}
|
||||||
|
{{ _("Some content creators are accepting donations for their work.") }}
|
||||||
|
{{ _("Donations are a great way to support your favorite modders, artists, and game developers.") }}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block headextra %}
|
||||||
|
<meta name="og:title" content="{{ self.title() }}">
|
||||||
|
<meta name="og:description" content="{{ self.description() | replace('\n', ' ') }}">
|
||||||
|
<meta name="description" content="{{ self.description() | replace('\n', ' ') }}">
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% macro authorlink(author) %}
|
{% macro authorlink(author) %}
|
||||||
<a href="{{ url_for('users.profile', username=author.username) }}">
|
<a href="{{ url_for('users.profile', username=author.username) }}">
|
||||||
{{ author.display_name }}
|
{{ author.display_name }}
|
||||||
@ -51,8 +62,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>{{ self.title() }}</h1>
|
<h1>{{ self.title() }}</h1>
|
||||||
<p class="lead">
|
<p class="lead">
|
||||||
{{ _("Some content creators are accepting donations for their work.") }}
|
{{ self.description() }}
|
||||||
{{ _("Donations are a great way to support your favorite modders, artists, and game developers.") }}
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>{{ _("Based on your reviews") }}</h2>
|
<h2>{{ _("Based on your reviews") }}</h2>
|
||||||
|
@ -1,14 +1,9 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title -%}
|
||||||
{{ _("Report") }}
|
{{ _("Report") }}
|
||||||
{% endblock %}
|
{%- endblock %}
|
||||||
|
|
||||||
{% block headextra %}
|
|
||||||
{% if noindex %}
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
{% endif %}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user