mirror of
https://github.com/rjNemo/vf-site
synced 2026-06-10 11:16:38 +00:00
5 lines
224 B
Python
5 lines
224 B
Python
from jinja2 import Environment, FileSystemLoader, select_autoescape
|
|
|
|
env = Environment(loader=FileSystemLoader("templates"), autoescape=select_autoescape())
|
|
template = env.get_template("index.html")
|
|
print(template.render())
|