askama/testing/templates/deep-base.html
Michael Pollind ce73e73720 feat: add caller pattern and adjust syntax to closer match jinja
Signed-off-by: Michael Pollind <mpollind@gmail.com>
2025-05-22 22:50:40 +02:00

15 lines
252 B
HTML

{% import "macro.html" as libb %}
<html>
<head>
{% block head %}
<style></style>
{% endblock %}
</head>
<body>
{% block body %}
{% call libb::thrice("nav") %}{% endcall %}
Copyright {{ year }}
{% endblock %}
</body>
</html>