#!/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"