mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
25 lines
634 B
HTML
25 lines
634 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% from "macros/packagegridtile.html" import render_pkggrid %}
|
|
{{ render_pkggrid(packages) }}
|
|
|
|
<ul class="btnset linedbuttonset">
|
|
{% if prev_url %}<li><a href="{{ prev_url }}">Previous</a></li>{% endif %}
|
|
<li>{{ page }} / {{ page_max }}</li>
|
|
{% if next_url %}<li><a href="{{ next_url }}">Next</a></li> {% endif %}
|
|
</ul>
|
|
|
|
{% if topics %}
|
|
<h2 style="margin-top:2em;">More content from the forums</h2>
|
|
|
|
{% from "macros/topics.html" import render_topics %}
|
|
{{ render_topics(topics, current_user) }}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|