babashka/test-resources/lib_tests/templates/inheritance/child-b.html

9 lines
158 B
HTML
Raw Normal View History

2021-05-06 10:53:59 +00:00
{% extends "templates/inheritance/child-a.html" %}
{% block header %}
B header
{{block.super}}
{% endblock %}
{% block content %}
Some content
{% endblock %}