mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 05:21:14 +00:00
13 lines
194 B
HTML
13 lines
194 B
HTML
{% extends "fragment-base.html" %}
|
|
|
|
{{ not_required }}
|
|
|
|
{% block body %}
|
|
<p>{{ required }}</p>
|
|
{% endblock %}
|
|
|
|
{% block other_body %}
|
|
{{ not_required_2 }}
|
|
<p>Don't render me.</p>
|
|
{% endblock %}
|