mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
Add SCSS via Asset Pipeline (#65)
* Remove old files * Add SCSS pipeline * Add generated files * Fix navigation HTML * Fix media queries * Remove RTL * Fix styling for big screens * Remove separator configs * Fix menu dropdown * Add working mobile menu * Fix menu item heights * Update README
This commit is contained in:
committed by
GitHub
parent
1d8e1935de
commit
934db8e964
30
Makefile
30
Makefile
@@ -1,36 +1,10 @@
|
||||
# LESS params
|
||||
LESS_DIR = ./static/less
|
||||
LESS_FILE = style.less
|
||||
LESS_RTL_FILE = style-rtl.less
|
||||
.PHONY: demo clear
|
||||
|
||||
# CSS params
|
||||
CSS_DIR = ./static/css
|
||||
CSS_FILE = style.min.css
|
||||
CSS_RTL_FILE = style-rtl.min.css
|
||||
CSS_TMP_FILE = tmp.css
|
||||
|
||||
define build_less
|
||||
lessc $(LESS_DIR)/$(1) > $(CSS_DIR)/$(CSS_TMP_FILE)
|
||||
uglifycss $(CSS_DIR)/$(CSS_TMP_FILE) > $(CSS_DIR)/$(2)
|
||||
rm -f $(CSS_DIR)/$(CSS_TMP_FILE)
|
||||
endef
|
||||
|
||||
.PHONY: clean demo build build-ltr build-rtl
|
||||
|
||||
build: clean build-ltr build-rtl
|
||||
|
||||
build-ltr:
|
||||
$(call build_less,$(LESS_FILE),$(CSS_FILE))
|
||||
|
||||
build-rtl:
|
||||
$(call build_less,$(LESS_RTL_FILE),$(CSS_RTL_FILE))
|
||||
|
||||
demo: build
|
||||
demo:
|
||||
mkdir -p demo/themes/coder
|
||||
rsync -av exampleSite/* demo
|
||||
rsync -av --exclude='demo' --exclude='exampleSite' --exclude='.git' . demo/themes/coder
|
||||
cd demo && hugo serve -D
|
||||
|
||||
clean:
|
||||
rm -f $(CSS_DIR)/*.css
|
||||
rm -rf demo
|
||||
|
||||
Reference in New Issue
Block a user