-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathalbum.lens
executable file
·46 lines (45 loc) · 1.03 KB
/
album.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
<koken:include file="inc/components/header.html" />
<main role="main">
<koken:load>
<article class="top-section">
<p class="time"><koken:time />
<koken:categories>
<span class="categories"> / In
<koken:loop separator=", ">
<koken:link>
{{ category.title }}
</koken:link>
</koken:loop>
</span>
</koken:categories>
<koken:tags>
<span class="tags">Tagged
<koken:loop separator=", ">
<koken:link>
{{ tag.title }}
</koken:link>
</koken:loop>
</span>
</koken:tags>
</p>
<p class="album-name">{{ album.title }} </p>
<p class="album-desc"> {{ album.description }} </p>
</article>
<ul class="grid">
<koken:loop>
<li>
<koken:link lightbox="true">
<koken:img crop="adaptive"/>
</koken:link>
</li>
</koken:loop>
</ul>
<koken:include file="inc/components/share.html" />
<koken:else>
<koken:note>
No album data found
</koken:note>
</koken:load>
</main>
</body>
</html>