0
0
Fork 0
Our blog as a set of static pages. http://zero-knowledge.org
Go to file
Gibheer f9a0e79b04 use rsync to delete obsolete files
This deletes old and stale files, which are not included in the
generated content anymore. This keeps the target directory nice and
clean.
2015-11-18 20:52:43 +01:00
content Change ravelry link in stormwinds introduction 2015-11-14 20:43:22 +01:00
themes/zero some release fixes 2015-11-17 22:00:40 +01:00
.gitignore initial commit and import 2015-10-25 01:41:33 +02:00
Makefile use rsync to delete obsolete files 2015-11-18 20:52:43 +01:00
README.md add makefile to build and install files 2015-11-17 20:48:58 +01:00
config.toml some release fixes 2015-11-17 22:00:40 +01:00

README.md

zblog

This is the third version of the zero-knowledge.org blog. This is generated with hugo.

how to use

Either start a small server which refreshes the pages on change with

hugo server --watch --verbose --buildDrafts

or generate everything with

hugo

documentation

The documentation on the markdown format can be found on the blackfriday project page.

building and installation

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