1
0
mirror of https://github.com/Luzifer/past3.git synced 2024-09-19 17:02:59 +00:00
past3/generate.py
2017-01-15 02:13:29 +01:00

12 lines
261 B
Python
Executable File

#!/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))