From fecd84bb0f2545702d5e51579f63eceef978d284 Mon Sep 17 00:00:00 2001 From: Kyle Bowman Date: Fri, 4 Oct 2024 21:35:56 -0400 Subject: [PATCH] feat: use base templates, specify css in cli --- Makefile | 3 ++- templates/{base.html => deprecated.base.html} | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) rename templates/{base.html => deprecated.base.html} (93%) diff --git a/Makefile b/Makefile index afce687..fddc8e9 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,8 @@ $(BUILD_DIR)/%: $(SRC_DIR)/%.md --from=markdown+wikilinks_title_before_pipe \ --to=html5 \ --standalone \ - --template=templates/base.html \ + --css=..././assets/css/normalize.css \ + --css=../../assets/css/space-sakura.css \ --output=$@ $< @echo "Building $@ from $<" diff --git a/templates/base.html b/templates/deprecated.base.html similarity index 93% rename from templates/base.html rename to templates/deprecated.base.html index 36d2035..a5b07eb 100644 --- a/templates/base.html +++ b/templates/deprecated.base.html @@ -12,8 +12,9 @@ $-- You can use pipes to transform variables if needed $title$ - + $for(author-meta)$ $endfor$ -- 2.39.5