mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
12 lines
171 B
HTML
12 lines
171 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
{{ page['title'] }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>{{ page['title'] }}</h1>
|
||
|
|
||
|
{{ page.html | safe }}
|
||
|
{% endblock %}
|