diff --git a/Makefile b/Makefile index 1b3e824..303e5c4 100644 --- a/Makefile +++ b/Makefile @@ -8,10 +8,12 @@ OUTPUT_DIR=$(BASEDIR)/public build: install rm -rf $(OUTPUT_DIR) + rm -rf $(STATIC_BUILD) mkdir -p $(STATIC_BUILD)/js $(STATIC_BUILD)/css $(NODE_BIN)/browserify $(STATIC_SRC)/js/index.js -o $(STATIC_BUILD)/js/app.js $(NODE_BIN)/node-sass $(STATIC_SRC)/scss/style.scss $(STATIC_BUILD)/css/style.css --source-map-embed cp -r $(BASEDIR)/node_modules/font-awesome/fonts $(STATIC_BUILD)/fonts + cp -r $(STATIC_SRC)/img $(STATIC_BUILD)/img @hugo -vDEF diff --git a/static/src/img/header.jpg b/static/src/img/header.jpg new file mode 100644 index 0000000..764e19c Binary files /dev/null and b/static/src/img/header.jpg differ diff --git a/static/src/scss/style.scss b/static/src/scss/style.scss index 4f10aff..ab7aca5 100644 --- a/static/src/scss/style.scss +++ b/static/src/scss/style.scss @@ -18,3 +18,7 @@ $fa-font-path: "../fonts"; ul.actions { text-align: center; } + +#banner { + background-image: url("../img/header.jpg"); +}