2010-04-17 13:45:36 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
|
|
xmlns:py="http://genshi.edgewall.org/">
|
|
|
|
<xi:include href="../layout.html" />
|
|
|
|
|
|
|
|
<?python
|
|
|
|
title = "Brainstorming Online"
|
|
|
|
content01 = """
|
|
|
|
dieser moeglichst mehrzeilige Text sollte idealerweise spaeter automatisch HTML-escaped werden.
|
|
|
|
Aktuell klappen auch Umlaute hier drin noch nicht.
|
|
|
|
"""
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>${title}</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2010-04-17 15:18:36 +02:00
|
|
|
<h1>${title}</h1>
|
|
|
|
<div class="post">
|
2010-04-17 13:45:36 +02:00
|
|
|
${content01}
|
|
|
|
</div>
|
2010-04-17 15:18:36 +02:00
|
|
|
${poll_new_small()}
|
|
|
|
|
2010-04-17 13:45:36 +02:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|