summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Douillet <vincent@vdouillet.fr>2021-11-01 19:03:09 +0100
committerVincent Douillet <vincent@vdouillet.fr>2021-11-01 20:04:30 +0100
commit6595cafe41544ab13935d0e2356b101631d0e930 (patch)
treee6a74fec9755320d1382880e680a51d71297c166 /Makefile
parent74f8f9e4974cf67d60e672be104090763e598cbc (diff)
add article title in title bar
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 19 insertions, 7 deletions
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 '<body>' >> output/index.html
- @cat template/index.html >> output/index.html
- @echo '</body>' >> 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 '<body>' >> output/$@.html
+ @cat template/index.html >> output/$@.html
+ @echo '</body>' >> 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 '<body>' >> output/$@.html
+ @$(MD) static/$@.md >> output/$@.html
+ @echo '</body>' >> 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 '<article>' >> tmp.html
@$(MD) $< >> tmp.html
@cat template/back.html >> tmp.html