Files
inja/test/data/html-extend/base.txt
pantor 95af782ca2 Add Child Inheritance Feature (#198)
* add block and extend feature

* constify, code cleaning

* update single include

* add html language to readme

* clean tests

* constantify, update year
2021-05-25 10:18:21 +02:00

12 lines
217 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
{% block head -%}
<title>{% block title %}Default - {% endblock %}</title>
{%- endblock -%}
</head>
<body>
{% block body %}ignored{% endblock %}
</body>
</html>