codekasten/wortschlucker/templates/nodes/brainstorming.html

29 lines
593 B
HTML

<!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>
<h1>${title}</h1>
<div class="post">
${content01}
</div>
${poll_new_small()}
</body>
</html>