Website/bin/gmiIndex
Jonathan Hodgson 56f95cb9aa Moved to Makefile based build system
Got rid of janky build.sh script. Now uses a bunch of janky scripts and
a make file - because that is bound to be easier to maintain.
2022-06-13 11:02:02 +01:00

35 lines
587 B
Bash
Executable file

#!/usr/bin/env bash
case "$1" in
tag)
title="Archive: $(echo "$ALLTAGS" | tr ' _' '\n ' | grep -i "$(echo "$2" | tr '_' ' ')")"
template="$(echo "" | pandoc --template=templates/blog.html \
-f markdown -t html5 -M archive -M title:"$title" 2> /dev/null )"
shift
;;
index)
echo "# Jonathan Hodgson"
echo ""
echo "## Blogs"
echo ""
;;
esac
shift
for i in "$@"; do
case "$i" in
tmp/intros/*)
cat "$i"
echo ""
;;
esac
done
echo "## Other Links"
echo "=> /help-me-out/ Help Me Out"
echo "=> /other-stuff-you-might-like/ Other Stuff You Might Like"