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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
/- tp=trill-post
/+ sr=sortug, plib=trill-utils, lib=boke, kaji
/= content /web/components/post-text
|%
++ abbreviated-post
|= [cm=content-map:tp button=manx] ^- (list manx)
=/ abbreviated (abbreviate-post:plib cm 1.000)
=/ blocks (latest-contents:plib cm)
?: .=(blocks abbreviated) %+ turn blocks block:content
%+ snoc (turn abbreviated block:content) button
++ post-snippet
|= t=thread:tp ^- manx
=/ url (trip (spat path.t)) :: TODO check for relative/absolute path
=+ [[a y] m [d h mm s f]]=(yore id.pid.t)
=/ ys %- trip (ud-to-cord:string:sr y)
:: =/ author (scot %p p.author.p)
=/ count (lent replies.t)
=/ comment-count ?: .=(count 0) "No" "{<count>}"
::
=/ continue-button
;div.continue-button-wrapper
;a.continue-button/"{url}":"Continue"
==
=/ comment-div
;span
;a/"{url}#comments":"{comment-count} comments"
==
=/ tag-links
%+ mapi:sr ~(tap in tags.t)
|= [i=@ tg=@t] ^- manx
=/ tt (trip tg)
=/ path "/blog?t={tt}"
=/ show ?: .=(i (dec ~(wyt in tags.t))) tt "{tt}, "
;a/"{path}":"{show}"
::
;article
;header
;h2
;a/"{url}":"{(trip title.t)}"
==
==
;main
;* %+ turn snip.t block:content
;+ continue-button
==
;div.post-metadata
;span
; Posted on
;a/"{ys}":"{ys}"
;a/"{ys}/{<m.m>}":"/{<m.m>}"
;a/"{ys}/{<m.m>}/{<d.d>}":"/{<d.d>}"
==
:: ;span
:: ; by
:: ;a/"by/{author}":"{author}"
:: ==
==
;+ ?: .=(0 ~(wyt in tags.t)) ;footer ;+ comment-div ==
;footer
; Tagged as
;span.tags-links
;* tag-links
==
;+ comment-div
==
==
++ css ^~ %- trip
'''
#post-list{
:: top: 0;
margin: auto;
& article{
margin: 0 0 1.5em;
margin-top: 40px;
border-bottom: 1px dotted #dfdfdf;
padding: 0 2rem;
padding-bottom: 40px;
& header h2{
font-size: 1.8rem;
text-align: center;
letter-spacing: 1px;
text-transform: uppercase;
line-height: 1.4em;
font-weight: 500;
}
& .post-metadata, article footer{
font-size: 90%;
font-style: italic;
color: #969696;
}
& main{
margin: 1.5em 0 0;
}
}
& .tags-links{
text-transform: capitalize;
margin-right: 1ch;
}
& .continue-button-wrapper{
margin-top: 1.5rem;
margin-bottom: 1.5rem;
}
& .continue-button{
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 13px;
-webkit-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
padding: 0.5rem, 0rem, 0.5rem, 1.25rem;
line-height: 1.5;
border-radius: 0.2rem;
}
& .cursor{
text-align: center;
margin: 1rem;
}
}
@media (max-width: 800px){
#post-list{
& article{
padding: 0;
line-height: 1.7rem;
}
}
}
'''
++ test
|= [p=post:tp children=full-graph:tp] ^- manx
=/ pid [author.p id.p]
=/ pat /blog/snip/(scot %uw (jam pid))
(fetch:kaji pat)
++ cursor
|= [cursor=(unit @da) label=tape]
?~ cursor ;div;
=/ path "/blog/f?cursor={(scow:parsing:sr %uw u.cursor)}"
;div.cursor(kaji "iscroll", path path, cont "#post-list", where "bottom")
;button:"{label} posts"
==
++ html
|= [p=tpage:tp =marl]
^- manx
;div#post-list.blog
;style:"{css}"
;* marl
:: ;+ (cursor newer.p "Newer")
;* (turn p.p post-snippet)
;+ (cursor older.p "Older")
==
--
|