0
0
Fork 0
Repository for the blog, currently rebuilt in go. http://zero-knowledge.org
Go to file
Gibheer d4a39e54da update readme 2022-08-29 20:46:28 +02:00
content add output function 2022-08-29 20:45:21 +02:00
src add output function 2022-08-29 20:45:21 +02:00
static add output function 2022-08-29 20:45:21 +02:00
templates add output function 2022-08-29 20:45:21 +02:00
.gitignore add output function 2022-08-29 20:45:21 +02:00
Makefile add output function 2022-08-29 20:45:21 +02:00
README.md update readme 2022-08-29 20:46:28 +02:00
go.mod add output function 2022-08-29 20:45:21 +02:00
go.sum add output function 2022-08-29 20:45:21 +02:00

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.