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