diff --git a/Makefile b/Makefile index 136d9c3..72a9a89 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,8 @@ OUTPUT_DIR=./output .PHONY: all pages blog sync clean all: pages blog - cp nicolas@ortegas.org_pub.asc style.css favicon.png profile.png $(OUTPUT_DIR) + cp -r static/* $(OUTPUT_DIR) + #cp nicolas@ortegas.org_pub.asc style.css favicon.png profile.png $(OUTPUT_DIR) pages: mkdir -p $(OUTPUT_DIR) diff --git a/pages/home.html b/pages/home.html index 9bf6256..fcef23a 100644 --- a/pages/home.html +++ b/pages/home.html @@ -1,5 +1,5 @@ Profile picture. diff --git a/favicon.png b/static/favicon.png similarity index 100% rename from favicon.png rename to static/favicon.png diff --git a/profile.png b/static/imgs/profile.png similarity index 100% rename from profile.png rename to static/imgs/profile.png diff --git a/nicolas@ortegas.org_pub.asc b/static/nicolas@ortegas.org_pub.asc similarity index 100% rename from nicolas@ortegas.org_pub.asc rename to static/nicolas@ortegas.org_pub.asc diff --git a/style.css b/static/style.css similarity index 100% rename from style.css rename to static/style.css