Repository for the blog, currently rebuilt in go.
http://zero-knowledge.org
content | ||
src | ||
static | ||
templates | ||
.gitignore | ||
.hgignore | ||
go.mod | ||
go.sum | ||
Makefile | ||
README.md |
zero-blog
This is the small blog engine to render and serve the blog zero-knowledge.org.
Templates can be changed in templates
and new posts can be created in files/content/post
.
build
To build this project a simple
make
will suffice. It will automatically render all files into an output directory.
add new content
To add new content, place a new markdown file in files/content
.
Add a Header to the file in the following format:
+++
title = "new title"
time = "2021-01-02T15:16:17"
author = "Gibheer"
published = true
template = "default.html"
+++
Template is using default.html
by default. If you need to use a different one, then
set that variable.