From bc6f635b5945db18c85d715b54d584880be3b99c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vitor=20Gon=C3=A7alves?= Date: Tue, 5 Dec 2023 01:54:22 -0300 Subject: [PATCH] blog: removed recent.sh i'm not a cgi master enough to do that --- blog/index.html | 2 -- blog/recent.sh | 13 ------------- 2 files changed, 15 deletions(-) delete mode 100755 blog/recent.sh 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

"