#!/usr/bin/python import os from albatross import SimpleContext ctx = SimpleContext('.') templ = ctx.load_template('simple.html') ctx.locals.environ = os.environ templ.to_html(ctx) print 'Content-Type: text/html' print ctx.flush_content()