-
Notifications
You must be signed in to change notification settings - Fork 5
/
archive.essays.lens
43 lines (26 loc) · 1.03 KB
/
archive.essays.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
<koken:include file="inc/header.html" />
<div id="text">
<koken:load limit="{{ settings.essays_index_limit }}">
<koken:head>
<meta property="og:site_name" content="{{ site.title }}" />
<meta property="og:description" content="{{ site.description strip_html='true' }}" />
<meta property="og:title" content="{{ labels.essay.plural }}" />
<meta property="og:type" content="blog" />
<meta property="og:url" content="{{ location.site_url }}{{ location.here }}" />
</koken:head>
<koken:variable name="list" value="true" />
<p><koken:link to="essays" title="View all {{ labels.essay.plural case='lower' }}">{{ labels.essay.plural }}</koken:link> / {{ archive.type.plural }} / {{ archive.title }}</p>
<br>
<koken:loop>
<koken:include file="inc/article.html" />
</koken:loop>
<p>
<koken:include file="inc/pagination.html" />
</p>
<koken:else>
<koken:note>
<strong>No essays found.</strong> Write some in Text.
</koken:note>
</koken:load>
</div>
<koken:include file="inc/footer.html" />