diff --git a/blog/index.html b/blog/index.html index e3cc9f1..dc4d33c 100644 --- a/blog/index.html +++ b/blog/index.html @@ -3,7 +3,5 @@

Recent blog posts:

- - diff --git a/blog/recent.sh b/blog/recent.sh deleted file mode 100755 index 5083772..0000000 --- a/blog/recent.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash - -printf "Content-type: text/html\n\n" - -three_latest="$(fd '\d{4}-\d{2}-\d{2}-.*\.md' ./content | sort -r | head -n 3)" - -for i in $three_latest; do - printf "

\n" - lowdown $i -done - - -printf "

this is the recentest post lol

"