aboutsummaryrefslogtreecommitdiff
path: root/deps/inja/test/data/html-extend/template.txt
blob: 18eeb5d417e2f8fdc31772d66f84a0f8fd90a6b3 (plain)
1
2
3
4
5
6
7
{% 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 %}