003 File Manager
Current Path:
/usr/local/share/examples/py38-Jinja2/basic
usr
/
local
/
share
/
examples
/
py38-Jinja2
/
basic
/
📁
..
📁
__pycache__
📄
cycle.py
(301 B)
📄
debugger.py
(223 B)
📄
inheritance.py
(392 B)
📁
templates
📄
test.py
(675 B)
📄
test_filter_and_linestatements.py
(456 B)
📄
test_loop_filter.py
(301 B)
📄
translate.py
(544 B)
Editing: test.py
from jinja2 import Environment from jinja2.loaders import DictLoader env = Environment( loader=DictLoader( { "child.html": """\ {% extends default_layout or 'default.html' %} {% include helpers = 'helpers.html' %} {% macro get_the_answer() %}42{% endmacro %} {% title = 'Hello World' %} {% block body %} {{ get_the_answer() }} {{ helpers.conspirate() }} {% endblock %} """, "default.html": """\ <!doctype html> <title>{{ title }}</title> {% block body %}{% endblock %} """, "helpers.html": """\ {% macro conspirate() %}23{% endmacro %} """, } ) ) tmpl = env.get_template("child.html") print(tmpl.render())
Upload File
Create Folder