mirror of
https://github.com/pantor/inja.git
synced 2026-02-22 11:26:24 +00:00
* add block and extend feature * constify, code cleaning * update single include * add html language to readme * clean tests * constantify, update year
8 lines
274 B
Plaintext
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 %}
|