mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-27 13:00:57 +00:00
13 lines
195 B
HTML
13 lines
195 B
HTML
{% extends "fragment-base.html" %}
|
|
|
|
{% block body %}
|
|
<p>Hello {{ name }}!</p>
|
|
{% call super() %}
|
|
{% endblock %}
|
|
|
|
{% block other_body %}
|
|
<p>Don't render me.</p>
|
|
{% call super() %}
|
|
{% endblock %}
|
|
|