mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
12 lines
208 B
HTML
12 lines
208 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ page['title'] }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if not page["no_h1"] %}<h1>{{ page['title'] }}</h1>{% endif %}
|
|
|
|
{{ page.html | safe }}
|
|
{% endblock %}
|