summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile26
-rw-r--r--static/about.md (renamed from about.md)0
-rw-r--r--template/header.html2
3 files changed, 20 insertions, 8 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
diff --git a/about.md b/static/about.md
index 13c94bc..13c94bc 100644
--- a/about.md
+++ b/static/about.md
diff --git a/template/header.html b/template/header.html
index 33d468b..9d99415 100644
--- a/template/header.html
+++ b/template/header.html
@@ -2,7 +2,7 @@
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
-<title>blog.vdouillet.fr</title>
+<title>$title</title>
<style>
@media (prefers-color-scheme: dark){
body {color:#fff;background:#000}