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.
This commit is contained in:
parent
39791363fa
commit
56f95cb9aa
13 changed files with 289 additions and 234 deletions
bin
27
bin/htmlIndex
Executable file
27
bin/htmlIndex
Executable file
|
@ -0,0 +1,27 @@
|
|||
#!/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)
|
||||
template="$(echo "" | pandoc --template=templates/blog.html \
|
||||
-f markdown -t html5 -M frontpage 2> /dev/null )"
|
||||
;;
|
||||
esac
|
||||
|
||||
shift
|
||||
|
||||
|
||||
echo "$template" | sed -n '1,/#CONTENT#/p' | head -n -1
|
||||
|
||||
for i in "$@"; do
|
||||
case "$i" in
|
||||
tmp/intros/*) cat "$i" ;;
|
||||
esac
|
||||
done
|
||||
|
||||
echo "$template" | sed -n '/#CONTENT#/,$p' | sed '1d'
|
Loading…
Add table
Add a link
Reference in a new issue