more content for brainstorming content and frontpage
This commit is contained in:
parent
6ca533acbd
commit
77054c1884
2 changed files with 44 additions and 12 deletions
|
@ -1,19 +1,34 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
<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
|
||||
|
||||
content01 = """
|
||||
== Online Gedanken und Ideen sammeln ==
|
||||
Ob fuer den Namen eines neuen Projektes, Ideen fuer ein Geschenk, Online-Feedback oder
|
||||
gemeinsamen Erstellen eines Einkaufszettels - in den Wortschlucker passt alles.
|
||||
[[#|mehr Infos...]]
|
||||
|
||||
== Neuen Wortschlucker starten ==
|
||||
"""
|
||||
# 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>Instant Notes</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Neuen Wortschlucker starten</h1>
|
||||
${Markup(content01)}
|
||||
${poll_new_small()}
|
||||
|
||||
|
||||
<h1>All Polls</h1>
|
||||
<h2>All Polls</h2>
|
||||
<p py:if="errors" class="error">Error:
|
||||
<ul>
|
||||
<li py:for="message in errors.values()">${message}</li>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue