|
3 years ago | |
---|---|---|
content | 3 years ago | |
static/pics | 4 years ago | |
themes/zero | 3 years ago | |
.gitignore | 4 years ago | |
Makefile | 4 years ago | |
README.md | 4 years ago | |
config.toml | 3 years ago |
This is the third version of the zero-knowledge.org blog. This is generated with hugo.
Either start a small server which refreshes the pages on change with
hugo server --watch --verbose --buildDrafts
or generate everything with
hugo
The documentation on the markdown format can be found on the blackfriday project page.
To build and install the website, use the following commands:
make clean install
The website is built automatically into the public/ directory.
You can also add a number of variables, to modify the installation process.
# install http files into this directory
HTTPDIR=/tmp/zblog
# give all files to this owner after copy
OWNER != id -u
# give all files to this group after copy
GROUP != id -g
# set this mode on all directories
DIRMODE = 554
# set this mode on all files
FILEMODE = 444