forked from Koken-Community-Support/OxyGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsets.lens
26 lines (26 loc) · 856 Bytes
/
sets.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
<koken:include file="inc/components/header.html" />
<main role="main">
<koken:load limit="{{ settings.albums_index_limit }}" infinite="true">
<ul class="grid">
<koken:loop>
<li>
<koken:link title="View the {{ labels.album.singular }} {{ album.title }}">
<koken:img lazy="true" size="{{ settings.grid_asp_ratio }}" />
<div><h3>{{ album.title }}</h3></div>
</koken:link>
</li>
</koken:loop>
</ul>
<koken:else>
<koken:note>No public albums found</koken:note>
</koken:load>
<koken:include file="inc/components/loading_msg.html" />
<koken:if data="settings.footer_setting" equals="tiny_footer">
<koken:include file="inc/components/footer_tiny.html" />
</koken:if>
<koken:if data="settings.footer_setting" equals="show_footer">
<koken:include file="inc/components/footer.html" />
</koken:if>
</main>
</body>
</html>