mirror of
https://github.com/Luzifer/past3.git
synced 2024-11-10 00:40:00 +00:00
12 lines
261 B
Python
12 lines
261 B
Python
|
#!/usr/bin/env python2
|
||
|
|
||
|
import yaml
|
||
|
from jinja2 import Environment, FileSystemLoader
|
||
|
|
||
|
config = yaml.load(open('config.yml', 'r').read())
|
||
|
|
||
|
env = Environment(loader=FileSystemLoader('./'))
|
||
|
template = env.get_template('index.html')
|
||
|
print(template.render(config))
|
||
|
|