aboutsummaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
authorAkshay <[email protected]>2019-11-23 08:30:58 +0000
committerAkshay <[email protected]>2019-11-23 08:30:58 +0000
commitd1faa7e508e863ff21f5076c8d2b40de6a4a16f6 (patch)
tree8342ba583ade6ec99bba3e8ab17bcd4487e44b30 /posts
parentd20105a4363e3321e58af5e3cd0edc1a8250ccf6 (diff)
new post!
Diffstat (limited to 'posts')
-rw-r--r--posts/static_sites_with_bash.md50
1 files changed, 50 insertions, 0 deletions
diff --git a/posts/static_sites_with_bash.md b/posts/static_sites_with_bash.md
new file mode 100644
index 0000000..d87cefd
--- /dev/null
+++ b/posts/static_sites_with_bash.md
@@ -0,0 +1,50 @@
1After going through a bunch of static site generators
2([pelican](https://blog.getpelican.com/),
3[hugo](https://gohugo.io),
4[vite](https://github.com/icyphox/vite)), I decided to roll
5my own. If you are more of the 'show me the code' kinda guy,
6[here](https://github.com/nerdypepper/site) you go.
7
8**Text formatting**: I chose to write in markdown, and convert
9to html with [lowdown](https://kristaps.bsd.lv/lowdown/).
10
11**Directory structure**: I host my site on GitHub pages, so
12`docs/` has to be the entry point. Markdown formatted posts
13go into `posts/`, get converted into html, and end up in
14`docs/index.html`, something like this:
15
16```
17posts=$(ls -t ./posts) # chronological order!
18for f in $posts; do
19 file="./posts/"$f # `ls` mangled our file paths
20 echo "generating post $file"
21
22 html=$(lowdown "$file")
23 echo -e "html" >> docs/index.html
24done
25```
26
27**Assets**: Most static site generators recommend dropping image
28assets into the site source itself. That does have it's
29merits, but I prefer hosting images separately:
30
31```
32# strip file extension
33ext="${1##*.}"
34
35# generate a random file name
36id=$( cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 2 | head -n 1 )
37id="$id.$ext"
38
39# copy to my file host
40scp -P 443 "$1" emerald:files/"$id"
41echo "https://files.nerdypepper.tech/$id"
42```
43
44**Templating**:
45[`generate.sh`](https://github.com/NerdyPepper/site/blob/master/generate.sh)
46brings the above bits and pieces together (with some extra
47cruft to avoid javascript). It uses `sed` to produce nice
48titles from the file names (removes underscores,
49title-case), and `date(1)` to add the date to each post
50listing!