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