From 6595cafe41544ab13935d0e2356b101631d0e930 Mon Sep 17 00:00:00 2001 From: Vincent Douillet Date: Mon, 1 Nov 2021 19:03:09 +0100 Subject: add article title in title bar --- Makefile | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3b4a711..bb52782 100644 --- a/Makefile +++ b/Makefile @@ -3,21 +3,33 @@ MD=markdown_py articles!=ls *.md articles_html = ${articles:.md=.html} -site : index $(articles_html) +site : index about $(articles_html) @echo "done" index : - @echo "Building index" - @cat template/header.html > output/index.html - @echo '' >> output/index.html - @cat template/index.html >> output/index.html - @echo '' >> output/index.html - @cat template/footer.html >> output/index.html + @echo "Building $@" + @cat template/header.html > output/$@.html + @sed -i "s/\$$title/blog\.vdouillet\.fr/g" output/$@.html + @echo '' >> output/$@.html + @cat template/index.html >> output/$@.html + @echo '' >> output/$@.html + @cat template/footer.html >> output/$@.html + +about : + @echo "Building $@" + @cat template/header.html > output/$@.html + @sed -i "s/\$$title/About/g" output/$@.html + @echo '' >> output/$@.html + @$(MD) static/$@.md >> output/$@.html + @echo '' >> output/$@.html + @cat template/footer.html >> output/$@.html # compile each article .md.html: @echo "Processing $<" @cat template/header.html > tmp.html + @ARTICLE_TITLE=`head -n1 $< | cut -d'# ' -f2` ; \ + sed -i "s/\$$title/$$ARTICLE_TITLE/g" tmp.html @echo '
' >> tmp.html @$(MD) $< >> tmp.html @cat template/back.html >> tmp.html -- cgit v1.2.3