0
0
Fork 0
Our blog as a set of static pages. http://zero-knowledge.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Gibheer d58ebeab52
update to new generator
1 year ago
content update to new generator 1 year ago
static update to new generator 1 year ago
templates update to new generator 1 year ago
vendor update to new generator 1 year ago
.gitignore initial commit and import 8 years ago
Makefile update to new generator 1 year ago
README.md add makefile to build and install files 7 years ago
go.mod update to new generator 1 year ago
go.sum update to new generator 1 year ago
main.go update to new generator 1 year ago

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