From c2107bc1fe3770697547da5a6d6e810bb7a959fa Mon Sep 17 00:00:00 2001 From: Kyle Bowman Date: Fri, 4 Oct 2024 21:14:25 -0400 Subject: [PATCH] refactor: restructure directories --- Makefile | 2 +- _static/acknowledgements.md => acknowledgements.md | 0 {_static => assets}/css/normalize.css | 0 {_static => assets}/css/space-sakura.css | 0 _static/demo.html => demo.html | 4 ++-- scripts/index.sh | 4 ++-- {_static/templates => templates}/base.html | 4 ++-- 7 files changed, 7 insertions(+), 7 deletions(-) rename _static/acknowledgements.md => acknowledgements.md (100%) rename {_static => assets}/css/normalize.css (100%) rename {_static => assets}/css/space-sakura.css (100%) rename _static/demo.html => demo.html (97%) rename {_static/templates => templates}/base.html (87%) diff --git a/Makefile b/Makefile index cd2e22c..afce687 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ $(BUILD_DIR)/%: $(SRC_DIR)/%.md --from=markdown+wikilinks_title_before_pipe \ --to=html5 \ --standalone \ - --template=_static/templates/base.html \ + --template=templates/base.html \ --output=$@ $< @echo "Building $@ from $<" diff --git a/_static/acknowledgements.md b/acknowledgements.md similarity index 100% rename from _static/acknowledgements.md rename to acknowledgements.md diff --git a/_static/css/normalize.css b/assets/css/normalize.css similarity index 100% rename from _static/css/normalize.css rename to assets/css/normalize.css diff --git a/_static/css/space-sakura.css b/assets/css/space-sakura.css similarity index 100% rename from _static/css/space-sakura.css rename to assets/css/space-sakura.css diff --git a/_static/demo.html b/demo.html similarity index 97% rename from _static/demo.html rename to demo.html index 01be547..6b39cae 100644 --- a/_static/demo.html +++ b/demo.html @@ -4,8 +4,8 @@ sakura demo - - + +
diff --git a/scripts/index.sh b/scripts/index.sh index 6c19420..46ac3ad 100755 --- a/scripts/index.sh +++ b/scripts/index.sh @@ -47,8 +47,8 @@ make_boilerplate(){ Pages in Build - - + +
diff --git a/_static/templates/base.html b/templates/base.html similarity index 87% rename from _static/templates/base.html rename to templates/base.html index 2e4607f..36d2035 100644 --- a/_static/templates/base.html +++ b/templates/base.html @@ -12,8 +12,8 @@ $-- You can use pipes to transform variables if needed $title$ - - + + $for(author-meta)$ $endfor$ -- 2.39.5