many stubs: landing pages and use cases; legal stuff.
This commit is contained in:
parent
6d8c51e898
commit
46aebca302
13 changed files with 455 additions and 0 deletions
33
wortschlucker/templates/nodes/agb.html
Normal file
33
wortschlucker/templates/nodes/agb.html
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<!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 = "Allgemeine Geschäftsbedingungen"
|
||||||
|
content01 = """
|
||||||
|
|
||||||
|
"""
|
||||||
|
# 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>
|
||||||
|
|
35
wortschlucker/templates/nodes/auswertungsmethode.html
Normal file
35
wortschlucker/templates/nodes/auswertungsmethode.html
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<!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 = "Wortschlucker als Auswertungsmethode"
|
||||||
|
content01 = """
|
||||||
|
|
||||||
|
== Jetzt 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>${title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<div class="post">
|
||||||
|
|
||||||
|
${Markup(content01)}
|
||||||
|
|
||||||
|
${poll_new_small()}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
33
wortschlucker/templates/nodes/datenschutz.html
Normal file
33
wortschlucker/templates/nodes/datenschutz.html
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<!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 = "Datenschutzerklärung"
|
||||||
|
content01 = """
|
||||||
|
Wir machen mit den Daten nix, ein anonymisiertes Piwik läuft mit.
|
||||||
|
"""
|
||||||
|
# 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>
|
||||||
|
|
36
wortschlucker/templates/nodes/einkaufsliste.html
Normal file
36
wortschlucker/templates/nodes/einkaufsliste.html
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<!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 = "Einkaufsliste Online"
|
||||||
|
content01 = """
|
||||||
|
== wozu? ==
|
||||||
|
mit PartnerIn den Einkauf für den Abend planen?
|
||||||
|
== Jetzt 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>${title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<div class="post">
|
||||||
|
|
||||||
|
${Markup(content01)}
|
||||||
|
|
||||||
|
${poll_new_small()}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
36
wortschlucker/templates/nodes/einkaufszettel_online.html
Normal file
36
wortschlucker/templates/nodes/einkaufszettel_online.html
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<!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 = "Einkaufszettel Online"
|
||||||
|
content01 = """
|
||||||
|
|
||||||
|
|
||||||
|
== Jetzt 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>${title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<div class="post">
|
||||||
|
|
||||||
|
${Markup(content01)}
|
||||||
|
|
||||||
|
${poll_new_small()}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
35
wortschlucker/templates/nodes/feedback_online.html
Normal file
35
wortschlucker/templates/nodes/feedback_online.html
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<!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 = "Feedback Online"
|
||||||
|
content01 = """
|
||||||
|
|
||||||
|
== Jetzt 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>${title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<div class="post">
|
||||||
|
|
||||||
|
${Markup(content01)}
|
||||||
|
|
||||||
|
${poll_new_small()}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
32
wortschlucker/templates/nodes/impressum.html
Normal file
32
wortschlucker/templates/nodes/impressum.html
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
<!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 = """
|
||||||
|
"""
|
||||||
|
# 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>
|
||||||
|
|
36
wortschlucker/templates/nodes/kartenabfrage_online.html
Normal file
36
wortschlucker/templates/nodes/kartenabfrage_online.html
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<!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 = "Kartenabfrage Online"
|
||||||
|
content01 = """
|
||||||
|
|
||||||
|
|
||||||
|
== Jetzt 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>${title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<div class="post">
|
||||||
|
|
||||||
|
${Markup(content01)}
|
||||||
|
|
||||||
|
${poll_new_small()}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
33
wortschlucker/templates/nodes/kontakt.html
Normal file
33
wortschlucker/templates/nodes/kontakt.html
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<!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 = "Kontakt"
|
||||||
|
content01 = """
|
||||||
|
Mailformular oder sowas.
|
||||||
|
"""
|
||||||
|
# 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>
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
<!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 = "Microblogging Zwischenablage"
|
||||||
|
content01 = """
|
||||||
|
== Wozu? ==
|
||||||
|
Zitat zu lang? Hier reinkopieren und den Link tweeten.
|
||||||
|
|
||||||
|
== Jetzt 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>${title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<div class="post">
|
||||||
|
|
||||||
|
${Markup(content01)}
|
||||||
|
|
||||||
|
${poll_new_small()}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
35
wortschlucker/templates/nodes/notizzettel_online.html
Normal file
35
wortschlucker/templates/nodes/notizzettel_online.html
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<!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 = "Notizzettel Online"
|
||||||
|
content01 = """
|
||||||
|
|
||||||
|
== Jetzt 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>${title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<div class="post">
|
||||||
|
|
||||||
|
${Markup(content01)}
|
||||||
|
|
||||||
|
${poll_new_small()}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
<!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 = "Papierkorb-Fragezeichen-Koffer Online"
|
||||||
|
content01 = """
|
||||||
|
== wtf? ==
|
||||||
|
PFK ist ...
|
||||||
|
|
||||||
|
|
||||||
|
== Jetzt 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>${title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<div class="post">
|
||||||
|
|
||||||
|
${Markup(content01)}
|
||||||
|
|
||||||
|
${poll_new_small()}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
36
wortschlucker/templates/nodes/seminarauswertung.html
Normal file
36
wortschlucker/templates/nodes/seminarauswertung.html
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<!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 = "Seminarauswertung Online"
|
||||||
|
content01 = """
|
||||||
|
|
||||||
|
|
||||||
|
== Jetzt 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>${title}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<div class="post">
|
||||||
|
|
||||||
|
${Markup(content01)}
|
||||||
|
|
||||||
|
${poll_new_small()}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue