mirror of
https://github.com/pantor/inja.git
synced 2026-08-05 15:13:18 +00:00
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
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% block head -%}
|
||||
<title>{% block title %}Default - {% endblock %}</title>
|
||||
{%- endblock -%}
|
||||
</head>
|
||||
<body>
|
||||
{% block body %}ignored{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user