askama/testing/templates/fragment-base.html
2024-04-25 10:44:58 +02:00

10 lines
140 B
HTML

<html>
<head></head>
<body>
{% block body %}
<p>Parent body content</p>
{% endblock %}
{% block other_body %}{% endblock %}
</body>
</html>