From 58af7f60bf6cf3700109124568273e00e1d6e674 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 21 Dec 2013 23:15:06 -0500 Subject: index: sort the posts by date I originally didn't want posts to be tied to the date (inspired by ). But, I've realized that for several reasons, dates are important. I've waffled quite a bit on this decision. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c575f58..c573790 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,6 @@ all: public/index.html $(addsuffix .html,$(articles)) public/%.html: public/%.md pagerender.rb template.erb Makefile ./pagerender.rb $< > $@ public/index.md: $(addsuffix .md,$(articles)) index.rb Makefile - ./index.rb $(sort $(filter-out Makefile index.rb public/index.md,$^)) > $@ + ./index.rb $(filter-out Makefile index.rb public/index.md,$^) > $@ clean: rm -f -- public/*.html public/index.md -- cgit v1.2.3