style changes and contact section

This commit is contained in:
Felipe M 2023-10-27 16:16:53 +02:00
parent 774a5c5ddd
commit cff628b82c
Signed by: fmartingr
GPG key ID: CCFBC5637D4000A8
7 changed files with 20 additions and 690 deletions

View file

@ -1,12 +1,14 @@
setup:
pip install --user setuptools
pip install --user poetry
poetry install
LEKTOR_FLAGS := scss
BUILD_OUTPUT_PATH ?= ${PWD}/public
BUILD_STATE_PATH ?= ${PWD}/.lektor
SERVER_PORT ?= 8080
server:
lektor server -f $(LEKTOR_FLAGS) -p $(SERVER_PORT)
clean:
rm -rf public
rm -rf assets/static/css
build:
make clean
poetry run lektor build -f scss --output-path ${PWD}/public --buildstate-path ${PWD}/.lektor
build: clean
lektor build -f $(LEKTOR_FLAGS) --output-path $(BUILD_OUTPUT_PATH) --buildstate-path $(BUILD_STATE_PATH)