/usr/share/doc/python-templayer/examples/lawn3.py is in python-templayer 1.5.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | import templayer
import time
import sys
sys.stdout.write("Content-type: text/html\r\n\r\n")
tmpl = templayer.HTMLTemplate("lawn3.html")
file_writer = tmpl.start_file()
file_writer.open(title="Gordon's Lawn Happenings",
date=time.asctime())
file_writer.close()
|