aboutsummaryrefslogtreecommitdiffstats
path: root/templates/german.html
blob: 0c8307e08355bc2500e6234c6cc3d3dbea02dc4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!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
-->