aboutsummaryrefslogtreecommitdiff
path: root/deps/inja/test/data/html-extend/base.txt
blob: e301c7a64c7cb969a29de283f43c08c0a0c67d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html lang="en">
<head>
    {% block head -%}
    <title>{% block title %}Default - {% endblock %}</title>
    {%- endblock -%}
</head>
<body>
    {% block body %}ignored{% endblock %}
</body>
</html>