Files
inja/test/data/html-extend/template.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

8 lines
274 B
Plaintext

{% extends "inter.txt" %}
{% block head -%}
{{ super(2) }}
<style type="text/css">.important { color: #336699; }</style>
{%- endblock %}
{% block title %}{{ super(2) }}{{ super() }}: {{ title }}{% endblock %}
{% block body %}<main>{{ content }}</main>{% endblock %}