mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
36 lines
629 B
HTML
36 lines
629 B
HTML
{% extends "packages/package_base.html" %}
|
|
|
|
{% block title %}
|
|
{{ _("Share and Badges") }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2 class="mt-0">{{ self.title() }}</h2>
|
|
|
|
<h3>{{ _("Links") }}</h3>
|
|
|
|
<p>
|
|
{{ _("Review link") }}:
|
|
</p>
|
|
|
|
<pre><code>{{ package.getURL("packages.review", absolute=True) }}</code></pre>
|
|
|
|
<h3>{{ _("Badges") }}</h3>
|
|
|
|
<p>
|
|
{{ package.makeShield("title") | markdown }}
|
|
</p>
|
|
|
|
<p>
|
|
<pre><code>{{ package.makeShield("title") }}</code></pre>
|
|
</p>
|
|
|
|
<p>
|
|
{{ package.makeShield("downloads") | markdown }}
|
|
</p>
|
|
|
|
<p>
|
|
<pre><code>{{ package.makeShield("downloads") }}</code></pre>
|
|
</p>
|
|
{% endblock %}
|