blob: 4b7abf76d1f9985e04d43ea12c9b1519b3e8f25e (
plain)
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
|
#!
PAGE="$1"
SITE_URL="$2"
export TITLE="Joe Carstairs"
export DESCRIPTION="Joe Carstairs' personal website"
POSTS="$(ls "${SRC}/blog/" | grep "^[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}\.blog.upphtml$")"
set --
for post in $POSTS
do
this_year="$( echo "$post" | cut -c1-4 )"
has_this_year=0
for year in $@
do
if [ "$this_year" = "$year" ]
then
has_this_year=1
break
fi
done
if [ $has_this_year -eq 0 ]
then
set -- $@ "$this_year"
fi
done
YEARS="$@"
pp "${SHARE}"/components/meta.upphtml
#!
<main>
<section class='h-feed'>
<h1>My blog</h1>
<aside>
<p>This blog is written by <a class='p-author h-card' href='/'>Joe Carstairs</a>.</p>
<p hidden><a class='u-url' href='${SITE_URL}/blog'>Permalink</a></p>
</aside>
<section>
<p><a href='/blog/subscribe'>How to subscribe to this blog</a></p>
</section>
#!
for year in $YEARS; do
#!
<h2>${year}</h2>
<ul>
#!
for post in $POSTS; do if [ "$(echo "${post}" | cut -c1-4)" = "$year" ]; then
title="$(grep "^export TITLE=" "${SRC}/blog/${post}" | cut -c15-)"
title="${title::${#title}-16}"
date_published="$(echo "${post}" | cut -c1-10)"
href="${SITE_URL}/blog/$(echo "$post" | cut -c1-10).html"
#!
<li class='h-entry'>
<h3><a class='u-url p-name' href='${href}'>${title}</a></h3>
#!
DATE="${date_published}" CLASS="dt-published" pp "${SHARE}/components/formatted_date.upphtml"
#!
</li>
#!
fi; done
#!
</ul>
#!
done
#!
</section>
|