-
Notifications
You must be signed in to change notification settings - Fork 4
/
archive.essays.lens
65 lines (57 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<koken:include file="layouts/header.html" />
<section id="main">
<div class="container">
<koken:breadcrumbs />
<div class="row">
<div class="col-md-12">
<h1>
<koken:if data="archive.type" equals="date">
All {{ labels.essay.plural }} from {{ archive.title }}
</koken:if>
<koken:if data="archive.type" equals="tag">
All {{ labels.essay.plural }} assigned the {{ archive.type.singular }} #{{ archive.title }}
</koken:if>
<koken:if data="archive.type" equals="category">
All {{ labels.essay.plural }} assigned in the {{ archive.type.singular }} {{ archive.title }}
</koken:if>
</h1>
</div>
</div>
<koken:load limit="10" infinite="true">
<koken:loop>
<div class="row">
<div class="col-md-12">
<hr>
<article>
<div class="heading">
<h1>
<koken:link>
{{ essay.title }}
</koken:link>
</h1>
<span>
<koken:link to="archive">
<koken:time />
</koken:link> |
</span>
<span>
{{ profile.name }}
</span>
</div>
<p>{{ essay.excerpt }}</p>
<p>
<koken:link title="{{ essay.title }}">Read More...</koken:link>
</p>
</article>
</div>
</div>
</koken:loop>
<koken:else>
<koken:include file="layouts/error.html" />
<koken:note>
No published essays found
</koken:note>
</koken:load>
</div>
</section>
<koken:include file="layouts/footer.html" />