diff options
author | Matěj Cepl <mcepl@redhat.com> | 2012-10-18 07:08:33 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2012-10-18 07:56:56 +0200 |
commit | cc417121161bf066f3f77edfb68b2c75ea29d33c (patch) | |
tree | da82bbef5a7dd6127866585e31677b0d9f56cf26 /templates/german.html | |
parent | 00948ed005dfbc702b78c6e63d0327e48688effc (diff) | |
download | hesla-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.html | 36 |
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 +--> |