-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(posts): render subtitle as meta description
- Loading branch information
1 parent
cae47dc
commit ae41975
Showing
5 changed files
with
27 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
PORT ?= 9090 | ||
DEST ?= site | ||
|
||
.PHONY: help | ||
help: | ||
@echo "Supported targets" | ||
@echo "=================" | ||
@echo "serve - serve the blog content on the PORT" | ||
@echo "render - render the website into the DEST directory" | ||
|
||
.PHONY: serve | ||
serve: build | ||
./blogware/blogware -serve localhost:$(PORT) | ||
|
||
.PHONY: render | ||
render: build | ||
./blogware/blogware -output $(DEST) | ||
|
||
.PHONY: build | ||
build: | ||
pushd blogware; go build; popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters