diff --git a/blog/content/datenschutz.md b/blog/content/datenschutz.md index 797d1ce..327a3ec 100644 --- a/blog/content/datenschutz.md +++ b/blog/content/datenschutz.md @@ -65,7 +65,7 @@ Weitere Informationen entnehmen Sie der Datenschutzerklärung von Strato: https: ## Quellcode -Das gesamte Quellcode dieser Website kann auf meinem Github-Repository aufgerufen werden unter [https://github.com/agresdominik/blog](https://github.com/agresdominik/blog) +Das gesamte Quellcode dieser Website kann auf meinem Github-Repository aufgerufen werden unter [github.com](https://github.com/agresdominik/website) ## Kontaktaufnahme per E-Mail diff --git a/makefile b/makefile index e4ac633..704c6a6 100644 --- a/makefile +++ b/makefile @@ -1,6 +1,4 @@ BASE_URL := https://agres.online/ -DEST := public -HUGO := hugo build: cd blog && hugo --cleanDestinationDir --minify -b $(BASE_URL) @@ -9,8 +7,6 @@ serve: cd blog && hugo serve -D --cleanDestinationDir clean: - cd blog && rm -rf ./public/* + cd blog && rm -rf ./public/* .PHONY: build serve clean - -