diff --git a/Makefile b/Makefile index 97f7155..9caf8c9 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ all: index.html clean: rm -f index.html -index.html: index.md template.html Makefile - pandoc --toc -s --css reset.css --css index.css -Vversion=v$(VERSION) -i $< -o $@ --template=template.html +index.html: demo/index.md demo/template.html Makefile + pandoc --toc -s --css src/reset.css --css src/index.css -Vversion=v$(VERSION) -i $< -o $@ --template=demo/template.html .PHONY: all clean diff --git a/castle.jpg b/demo/castle.jpg similarity index 100% rename from castle.jpg rename to demo/castle.jpg diff --git a/index.md b/demo/index.md similarity index 100% rename from index.md rename to demo/index.md diff --git a/template.html b/demo/template.html similarity index 98% rename from template.html rename to demo/template.html index ff5ab39..ce10579 100644 --- a/template.html +++ b/demo/template.html @@ -71,6 +71,6 @@ $for(include-after)$ $include-after$ $endfor$
- + diff --git a/index.html b/index.html index 8d922ce..7dfa978 100644 --- a/index.html +++ b/index.html @@ -7,8 +7,8 @@ The Monospace Web - - + + @@ -18,7 +18,7 @@ A minimalist design exploration - + @@ -320,6 +320,6 @@ href="https://github.com/owickstrom/the-monospace-web">github.com/owickstrom/the href="https://x.com/usgraphics">U.S. Graphics Company for all the inspiration.

- + diff --git a/package.json b/package.json index e0dd70b..412ba03 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@owickstrom/the-monospace-web", "version": "0.1.3", "description": " A minimalist design exploration", - "main": "index.css", + "main": "src/index.css", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, diff --git a/index.css b/src/index.css similarity index 100% rename from index.css rename to src/index.css diff --git a/index.js b/src/index.js similarity index 100% rename from index.js rename to src/index.js diff --git a/reset.css b/src/reset.css similarity index 100% rename from reset.css rename to src/reset.css
Versionv0.1.2v0.1.3
Updated