forked from jhne/norma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
date.lens
81 lines (80 loc) · 2.05 KB
/
date.lens
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<koken:include file="inc/components/header.html" />
<main role="main">
<div class="page-content">
<koken:load>
<ol class="list">
<koken:loop>
<li>
<koken:event>
<koken:event_album>
<koken:link>
<koken:img />
</koken:link>
<h2 class="timeline-time">
<koken:link><koken:time /></koken:link>
</h2>
<h3>
<koken:link>
{{ album.title }}
</koken:link>
</h3>
<p>
{{ album.summary }}
</p>
</koken:event_album>
<koken:event_album_update>
<koken:loop>
<koken:img />
</koken:loop>
<h3>{{ album.title }} ({{ content.length }} new items)</h3>
<p>
{{ album.summary }}
</p>
</koken:event_album_update>
<koken:event_content>
<koken:content_image>
<koken:link>
<koken:img />
</koken:link>
</koken:content_image>
<koken:content_video>
<koken:video />
</koken:content_video>
<p>
<koken:link>
{{ content.title | content.filename }}
</koken:link>
</p>
<p>
{{ content.caption }}
</p>
</koken:event_content>
<koken:event_essay>
<koken:featured_image>
<koken:link>
<koken:img />
</koken:link>
</koken:featured_image>
<h3>
<koken:link>
{{ essay.title }}
</koken:link>
</h3>
<p>
{{ essay.excerpt }}
</p>
</koken:event_essay>
</koken:event>
<div class="timeline-divider"></div>
</li>
</koken:loop>
</ol>
<koken:else>
<koken:note>
No timeline data found.
</koken:note>
</koken:load>
</div>
</main>
</body>
</html>