mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-30 06:21:13 +00:00
14 lines
215 B
HTML
14 lines
215 B
HTML
{% extends "fragment-base.html" %}
|
|
|
|
{% block body %}
|
|
<p>Don't render me!</p>
|
|
{% block nested %}
|
|
<p>I should be here.</p>
|
|
{% endblock %}
|
|
{% endblock %}
|
|
|
|
{% block other_body %}
|
|
<p>Don't render me!</p>
|
|
{% endblock %}
|
|
|