summaryrefslogtreecommitdiff
path: root/index.md.do
diff options
context:
space:
mode:
authorViktor Kleen <viktor@kleen.org>2015-01-02 14:50:48 +0000
committerViktor Kleen <viktor@kleen.org>2015-01-02 14:50:48 +0000
commitf3f1f5e7a7cb23230d623b02773b75ea997ea241 (patch)
tree0404076b32274ead989f3e2abe731476299dedae /index.md.do
parent0495a66c4b7953e27cb8c7ab20f8b061fed6b379 (diff)
downloaddirty-haskell.org-f3f1f5e7a7cb23230d623b02773b75ea997ea241.tar
dirty-haskell.org-f3f1f5e7a7cb23230d623b02773b75ea997ea241.tar.gz
dirty-haskell.org-f3f1f5e7a7cb23230d623b02773b75ea997ea241.tar.bz2
dirty-haskell.org-f3f1f5e7a7cb23230d623b02773b75ea997ea241.tar.xz
dirty-haskell.org-f3f1f5e7a7cb23230d623b02773b75ea997ea241.zip
Implement previews of lists in the index
Diffstat (limited to 'index.md.do')
-rw-r--r--index.md.do7
1 files changed, 5 insertions, 2 deletions
diff --git a/index.md.do b/index.md.do
index 3b6eddd..d7c76d2 100644
--- a/index.md.do
+++ b/index.md.do
@@ -23,8 +23,8 @@ This site is supposed to serve as a research notebook to get me to write up
23ideas and results. As such, it is woefully unpolished, unreliably and generally 23ideas and results. As such, it is woefully unpolished, unreliably and generally
24to be used at your own risk. 24to be used at your own risk.
25 25
26Still, have fun! And please send me [email](mailto:vkleen+math@17220103.de) with 26Still, have fun! And please send email with suggestions, corrections,
27suggestions, corrections, criticism or general rants if you like. 27criticism or general rants to <vkleen+math@17220103.de> if you like.
28 28
29I have the following categories of posts: 29I have the following categories of posts:
30 30
@@ -32,4 +32,7 @@ EOF
32 32
33for x in "${LISTS[@]}"; do 33for x in "${LISTS[@]}"; do
34 printf "* [%s](%s)\n" "$(<$x/title)" "$x.html" 34 printf "* [%s](%s)\n" "$(<$x/title)" "$x.html"
35 while read -r -d $'\n'; do
36 printf " %s" "$REPLY"
37 done < "$x/preview"
35done 38done