aboutsummaryrefslogtreecommitdiffstats
path: root/templates/german.html
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2012-10-18 07:08:33 +0200
committerMatěj Cepl <mcepl@redhat.com>2012-10-18 07:56:56 +0200
commitcc417121161bf066f3f77edfb68b2c75ea29d33c (patch)
treeda82bbef5a7dd6127866585e31677b0d9f56cf26 /templates/german.html
parent00948ed005dfbc702b78c6e63d0327e48688effc (diff)
downloadhesla-cc417121161bf066f3f77edfb68b2c75ea29d33c.tar.gz
First skeleton of the German version
Mainly missing feature is switching between languages (and all cookie handling).
Diffstat (limited to 'templates/german.html')
-rw-r--r--templates/german.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/german.html b/templates/german.html
new file mode 100644
index 0000000..3939045
--- /dev/null
+++ b/templates/german.html
@@ -0,0 +1,36 @@
+{% import "shared.inc" as utils %}
+<!DOCTYPE html>
+<html manifest="hesla.appcache">
+ <head>
+ <meta charset="utf-8"/>
+ <meta content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" name="viewport"/>
+ <link href="screen.css" type="text/css" rel="stylesheet"/>
+ <title>Die Losungen der Herrnhuter Brüdergemeine</title>
+ <script src="hesla.js" async="async" type="text/javascript" defer="defer">
+</script>
+ </head>
+ <body>
+ <noscript>I am sorry, this really doesn't work without JavaScript.</noscript>
+ {% for art in articles %}
+ <article id="{{ art.date_id }}">
+ <header>
+ <h1>{{ art.date_full }}{% if art.sunday %}
+ <br>{{ art.sunday }}
+ {%- endif %}</h1>
+ </header>
+ {% for wword in art.watchwords %}
+ <p>{{ wword.text }}</p>
+ <p class="reference">{{ wword.ref }}</p>
+ {% endfor %}
+ </article>
+ {% endfor %}
+ <footer class="acknowledgment"><p>© <a href="http://www.ebu.de"
+ target="_blank">Evangelische Brüder-Unität –
+ Herrnhuter Brüdergemeine</a><br>
+ Weitere Informationen finden Sie <a
+ href="http://www.losungen.de"
+ target="_blank">hier</a>.</p></footer>
+ </body>
+</html>
+<!-- vi:ft=htmljinja
+-->