#!/usr/bin/python
from albatross import SimpleContext

ctx = SimpleContext('.')
templ = ctx.load_template('simple.html')
templ.to_html(ctx)

print 'Content-Type: text/html'
print
ctx.flush_content()