blob: 405d9378a55314301645c3a6909d18d0f4f64117 (
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
36
37
|
{% macro bible_url(ref) %}http://www.crosswire.org/study/passagestudy.jsp?key={{ ref.book }}+{{ ref.chapter }}%3A{{ ref.verse }}{% endmacro %}
<!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>Hesla Jednoty bratrské pro tento den</title>
<script src="hesla.js" async="async" type="text/javascript" defer="defer">
</script>
</head>
<body>
<noscript>Omlouvám se, ale tato aplikace opravdu nefunguje bez
funkčního JavaScriptu.</noscript>
{% for art in articles %}
<article id="{{ art.date_id }}">
<header>
<h1>{{ art.date_full }}</h1>
</header>
{% for wword in art.watchwords %}
<p>{{ wword.text }}</p>
<p class="reference"><a href="{{ bible_url(wword.ref_id) }}">{{ wword.ref }}</a></p>
{% endfor %}
<ul class="readings">
{% for read in art.readings %}
<li>{{ read }}</li>
{% endfor %}
</ul>
</article>
{% endfor %}
<footer class="acknowledgment">
<p>Děkuji za poskytnuté texty <a href="http://hesla.dulos.cz/" target="_blank">Petru
Heřmanovi</a>.</p></footer>
</body>
</html>
<!-- vi:ft=htmljinja
-->
|