wowana.me
website source
commit 224f8b659250a94868dffe3350631707d692c688 parent 92a025cb7b75a212d51f954b84ef0753216c0240 Author: opal hart <opal@wowana.me> Date: Sat, 11 May 2019 03:41:53 +0000 update make rule for blog index blog index currently orders by date modified; maybe fix that later but for now just update wording to be less ambiguous Diffstat:
M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -27,7 +27,7 @@ src/blog/index.part.xht: $(BLOGSRC) ls -1t $^ | while read filename; do \ iso="$$(date -Iseconds -r$$filename)"; \ human="$$(date +'%Y %b %d' -r$$filename)"; \ - grep -H '^# ' $$filename | sed 's@^src/blog/\(.*\).md:# \(.*\)@* [\2](\1.xht)'" *on <time datetime='$$iso' title='$$iso'>$$human</time>*@"; \ + grep -H '^# ' $$filename | sed 's@^src/blog/\(.*\).md:# \(.*\)@* [\2](\1.xht)'" *last updated <time datetime='$$iso' title='$$iso'>$$human</time>*@"; \ done ) | markdown > $@ out/%.xht: src/%.part.xht src/header.inc src/footer.inc