mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-27 13:00:57 +00:00
10 lines
286 B
HTML
10 lines
286 B
HTML
{% extends "base.html" %}
|
|
{# Testing named "endmacro" #}
|
|
{% macro foo(b) -%}
|
|
{% if b %}t{% else %}f{% endif -%}
|
|
{% endmacro foo -%}
|
|
{# Testing named endblock declaration #}
|
|
{% block what %}{% endblock what %}
|
|
{# Testing named endblock call #}
|
|
{% block foo %}tadam{% endblock foo %}
|