mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
13 lines
216 B
HTML
13 lines
216 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
Threads
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>Threads</h1>
|
||
|
|
||
|
{% from "macros/threads.html" import render_threadlist %}
|
||
|
{{ render_threadlist(threads) }}
|
||
|
{% endblock %}
|