babashka/test-resources/lib_tests/templates/inheritance/child-b.html
2021-05-06 12:53:59 +02:00

9 lines
No EOL
158 B
HTML

{% extends "templates/inheritance/child-a.html" %}
{% block header %}
B header
{{block.super}}
{% endblock %}
{% block content %}
Some content
{% endblock %}