Template.cgi

From XPUB & Lens-Based wiki
Revision as of 16:48, 3 February 2009 by Michael Murtaugh (talk | contribs) (New page: <source lang="python"> #!/usr/bin/python print "Content-type: text/html" print print """<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
#!/usr/bin/python

print "Content-type: text/html"
print

print """<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>form building blocks</title>
</head>

<body>
<h1>form building blocks</h1>
<form action="" method="get">
"""

print """
</form>
</body>
</html>

"""