mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
14 lines
260 B
HTML
14 lines
260 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ page['title'] }}
|
|
{% endblock %}
|
|
|
|
{% block container %}
|
|
<main class="container mt-4 content">
|
|
{% if not page["no_h1"] %}<h1>{{ page['title'] }}</h1>{% endif %}
|
|
|
|
{{ page.html | safe }}
|
|
</main>
|
|
{% endblock %}
|