mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 13:30:59 +00:00
10 lines
140 B
HTML
10 lines
140 B
HTML
<html>
|
|
<head></head>
|
|
<body>
|
|
{% block body %}
|
|
<p>Parent body content</p>
|
|
{% endblock %}
|
|
{% block other_body %}{% endblock %}
|
|
</body>
|
|
</html>
|