43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
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
|
|
from creoleparser import text2html
|
|
#text can be creole-encoded, see http://www.wikicreole.org/imageServlet?page=CheatSheet%2Fcreole_cheat_sheet.png&width=340
|
|
title = "Impressum"
|
|
content01 = """
|
|
WortSchlucker ist ein Projekt des gemeinnützigen Vereins Sense.Lab e.V.
|
|
|
|
Sense.Lab e.V.\\Ludwigstrasse 20\\18055 Rostock
|
|
|
|
Eingetragen im Vereinsregister Rostock unter der Nummer VR 2201.
|
|
|
|
Bei Fragen, Mitteilungen und Ideen können sie uns ebenfalls wie folgt erreichen:\\
|
|
asynchron info [at] senselab.org\\
|
|
synchron 0381 127 34 54
|
|
|
|
|
|
"""
|
|
# creoleparser returns an utf-8 encoded string by default, but this would cause "Markup" below to fail during decoding.
|
|
# The parameter "None" for "encoding" forces unicode output. This works with "Markup".
|
|
content01 = text2html(content01, encoding=None)
|
|
?>
|
|
|
|
|
|
<head>
|
|
<title>${title}</title>
|
|
</head>
|
|
<body>
|
|
<h1>${title}</h1>
|
|
<div class="post">
|
|
|
|
${Markup(content01)}
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|