0
0
Fork 0
Repository for the blog, currently rebuilt in go. http://zero-knowledge.org
Go to file
Gibheer 7b1816e5fc add post 130 2023-09-18 16:34:59 +02:00
content add post 130 2023-09-18 16:34:59 +02:00
src also copy static files to output directory 2022-08-29 21:26:04 +02:00
static add output function 2022-08-29 20:45:21 +02:00
templates prepare for next implementation in go 2022-08-29 20:53:12 +02:00
.gitignore add output function 2022-08-29 20:45:21 +02:00
.hgignore add hgignore to make life easier 2014-02-18 22:16:25 +01: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.