about summary refs log tree commit diff
path: root/other/website/src/make_page.py
blob: 57d6ef51cfa4be82177a056feb6f0a389d528c7b (plain)
1
2
3
4
5
6
import sys

template = "".join(file("template.html").readlines())
content = "".join(sys.stdin.readlines())
final_page = template.replace("%CONTENT%", content)
print final_page