world/templates/page.html

14 lines
237 B
HTML
Raw Normal View History

2023-12-22 14:25:00 +01:00
{% extends "base.html" %}
{% block content %}
<h2>{{ page.title }}</h2>
<noscript>
Your browser doesn't support JS. This is so cool!
</noscript>
<div class='md-content'>
{{ page.content | safe }}
</div>
{% endblock content %}