mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
21 lines
420 B
HTML
21 lines
420 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Threads
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Threads</h1>
|
|
|
|
{% from "macros/pagination.html" import render_pagination %}
|
|
{% from "macros/threads.html" import render_threadlist %}
|
|
{{ render_pagination(pagination, url_set_query) }}
|
|
|
|
<div class="list-group">
|
|
{{ render_threadlist(threads) }}
|
|
</div>
|
|
|
|
{{ render_pagination(pagination, url_set_query) }}
|
|
|
|
{% endblock %}
|