Skip to content

Commit 5ed59a1

Browse files
committed
Add assets
1 parent 0e5345a commit 5ed59a1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+50319
-2
lines changed

Makefile

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
.DEFAULT_GOAL := help
2-
.PHONY: help install build netlify
2+
.PHONY: help install html css build serve netlify
33

44
help: ## this help dialog
55
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
66

77
install: ## install all dependencies, including Poetry
88
python3 -m pip install poetry && poetry env use 3 && poetry install
99

10-
build: ## build site in output/
10+
html: ## build HTML with corvid
1111
poetry run corvid
1212

13+
css: ## compile CSS from Sass
14+
poetry run pysass output/assets/style/style.scss output/assets/style/style.css
15+
16+
build: ## build site in output/
17+
make html && make css
18+
19+
serve: ## serve site from output/
20+
poetry run python -m http.server 8000 -d output
21+
1322
netlify: ## publish on Netlify
1423
make install && make build
108 KB
Binary file not shown.

input/assets/fonts/Bold/OpenSans-Bold.svg

Lines changed: 958 additions & 0 deletions
219 KB
Binary file not shown.
113 KB
Binary file not shown.
59.6 KB
Binary file not shown.
125 KB
Binary file not shown.

input/assets/fonts/BoldItalic/OpenSans-BoldItalic.svg

Lines changed: 958 additions & 0 deletions
208 KB
Binary file not shown.
107 KB
Binary file not shown.

0 commit comments

Comments
 (0)