codekasten/wortschlucker/templates/nodes/brainstorming.html

31 lines
710 B
HTML

<!DOCTYPE html>
<html encoding="utf-8"
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 = unicode("""
dieser mehrzeilige Text ist HTML-escaped und kann Umlaute enthalten.
Falls er <Umlaute> enthält, dann muss die Datei utf8-codiert sein und der Text
muss in unicode verwandelt werden (unicode(foo)).
""")
?>
<head>
<title>${title}</title>
</head>
<body>
<h1>${title}</h1>
<div class="post">
${content01}
</div>
${poll_new_small()}
</body>
</html>