• Stars
    star
    90
  • Rank 356,100 (Top 8 %)
  • Language
    Go
  • License
    MIT License
  • Created over 9 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Absolutely minimal static site generator in Go (powers https://zserge.com)

zs

Build Status

zs is an extremely minimal static site generator written in Go.

It's inspired by zas generator, but is even more minimal.

The name stands for 'zen static' as well as it's my initials.

Features

  • Zero configuration (no configuration file needed)
  • Cross-platform
  • Highly extensible
  • Works well for blogs and generic static websites (landing pages etc)
  • Easy to learn
  • Fast

Installation

Download the binaries from Github or build it manually:

$ go get github.com/zserge/zs

Ideology

Keep your texts in markdown, amber or HTML format right in the main directory of your blog/site.

Keep all service files (extensions, layout pages, deployment scripts etc) in the .zs subdirectory.

Define variables in the header of the content files using YAML:

title: My web site
keywords: best website, hello, world
---

Markdown text goes after a header *separator*

Use placeholders for variables and plugins in your markdown or html files, e.g. {{ title }} or `{{ command arg1 arg2 }}.

Write extensions in any language you like and put them into the .zs subdiretory.

Everything the extensions prints to stdout becomes the value of the placeholder.

Every variable from the content header will be passed via environment variables like title becomes $ZS_TITLE and so on. There are some special variables:

  • $ZS - a path to the zs executable
  • $ZS_OUTDIR - a path to the directory with generated files
  • $ZS_FILE - a path to the currently processed markdown file
  • $ZS_URL - a URL for the currently generated page

Example of RSS generation

Extensions can be written in any language you know (Bash, Python, Lua, JavaScript, Go, even Assembler). Here's an example of how to scan all markdown blog posts and create RSS items:

for f in ./blog/*.md ; do
	d=$($ZS var $f date)
	if [ ! -z $d ] ; then
		timestamp=`date --date "$d" +%s`
		url=`$ZS var $f url`
		title=`$ZS var $f title | tr A-Z a-z`
		descr=`$ZS var $f description`
		echo $timestamp \
			"<item>" \
			"<title>$title</title>" \
			"<link>http://zserge.com/$url</link>" \
			"<description>$descr</description>" \
			"<pubDate>$(date --date @$timestamp -R)</pubDate>" \
			"<guid>http://zserge.com/$url</guid>" \
		"</item>"
	fi
done | sort -r -n | cut -d' ' -f2-

Hooks

There are two special plugin names that are executed every time the build happens - prehook and posthook. You can define some global actions here like content generation, or additional commands, like LESS to CSS conversion:

# .zs/post

#!/bin/sh
lessc < $ZS_OUTDIR/styles.less > $ZS_OUTDIR/styles.css
rm -f $ZS_OUTDIR/styles.css

Syntax sugar

By default, zs converts each .amber file into .html, so you can use lightweight Jade-like syntax instead of bloated HTML.

Also, zs converts .gcss into .css, so you don't really need LESS or SASS. More about GCSS can be found here.

Command line usage

zs build re-builds your site.

zs build <file> re-builds one file and prints resulting content to stdout.

zs watch rebuilds your site every time you modify any file.

zs var <filename> [var1 var2...] prints a list of variables defined in the header of a given markdown file, or the values of certain variables (even if it's an empty string).

License

The software is distributed under the MIT license.

More Repositories

1

lorca

Build cross-platform modern desktop apps in Go + HTML5
Go
7,899
star
2

jsmn

Jsmn is a world fastest JSON parser/tokenizer. This is the official repo replacing the old one at Bitbucket
C
3,504
star
3

awfice

The world smallest office suite
HTML
3,440
star
4

fenster

The most minimal cross-platform GUI library
C++
495
star
5

tray

Cross-platform, super tiny C99 implementation of a system tray icon with a popup menu.
C
465
star
6

partcl

ParTcl - a micro Tcl implementation
C
459
star
7

metric

Minimal metrics for Go (counter/gauge/histogram). No dependencies. Compatible with expvar. Web UI included.
Go
352
star
8

luash

Tiny lua module to write shell scripts with lua (inspired by Python's sh module)
Lua
302
star
9

pt

Protothreads (coroutines) in C99. Highly portable, but work best in low-end embedded systems.
C
262
star
10

o

Tiny and simple React clone
JavaScript
241
star
11

lua-promises

A+ promises in Lua
Lua
214
star
12

log

Ultimately minimal (yet very convenient) logger for Android and Java
Java
158
star
13

tojvm

A toy JVM in Go
Go
155
star
14

bfapi

Resilient, scalable Brainf*ck, in the spirit of modern systems design
Go
144
star
15

webview-python

Python bindings to webview
Objective-C
143
star
16

hid

Simple HID driver for Go (pure golang, no dependencies, no cgo)
Go
119
star
17

nokia-composer

Nokia Composer in 512 bytes
HTML
118
star
18

expr

Fast and lightweight math expression evaluator in C99
C
115
star
19

tinysh

Tiny UNIX shell, de-obfuscated, modernized, and "rewritten in Rust".
C
85
star
20

nanonn

A nano-framework for neural networks
Rust
83
star
21

dotfiles

git clone --bare https://github.com/zserge/dotfiles $HOME/.dotfiles && git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME checkout
Vim Script
79
star
22

lc3-forth

Post-Apocalyptic Computing: bootstrapping Forth environment for LC-3 CPU
C
75
star
23

1bitr

Minimalistic text-based 1-bit music tracker
C
71
star
24

carnatus

A tiny chess engine in Go (sunfish port)
Go
64
star
25

odetoj

Rewrite of Arthur Whitney's one-page J interpreter in Rust
Rust
60
star
26

headline

Ascetic RSS reader in JavaScript, no server required
JavaScript
57
star
27

buckbone

A simple android project generator for the Buck build system
Shell
52
star
28

glob-grep

A little experiment: compare the languages aimed to replace C
Zig
51
star
29

q

Tiny and simple VueJS clone
JavaScript
46
star
30

beep

Cross-platform beep() function
C
42
star
31

slide

An attempt to implement Trikita Slide for desktop
C++
39
star
32

figma-simplify-path

Figma plugin to simplify vector paths
JavaScript
24
star
33

mucks

A tiny terminal session manager for Tmux, Screen and DVTM
Shell
20
star
34

anvil-kotlin-demos

Minimal tutorial/demos for Anvil+Kotlin
Kotlin
18
star
35

zserge.github.io

My static site
HTML
14
star
36

kv

An ultimately minimal persistent key-value store + LRU cache
Go
12
star
37

jsmn.lua

The world fastest JSON parser ported to Lua
Lua
11
star
38

yu

Yu is a tee-like tool, but with rotation feature like logrotate
C
10
star
39

aint

Code for the "AI or AIN'T" blog posts
Go
9
star
40

mdns

Very pragmatic mDNS implementation in Go
Go
8
star
41

kveer

A tiny in-memory key-value storage in Go with optional persistence (atomic backup file, or append-only)
Go
7
star
42

bf

Well, everyone has to write a brainf*ck interpreter at some point
C
7
star
43

toy-java-agent

Toy Java agent
Java
6
star
44

covered

Trello Cover Card Generator
JavaScript
6
star
45

bsoz

One of the most minimal MOS6502 and retro computer emulators!
C
6
star
46

atomicwriter

Atomic file writes in Go (using a unique temporary file and atomic rename)
Go
5
star
47

lex

A library for writing lexers in Go
Go
4
star
48

textizer

Minimal android widgets in Scheme
Java
4
star
49

chess

JavaScript
4
star
50

ping

An ultimately minimal social network, messaging, pub/sub and home automation app
4
star
51

photo

Minimalistic private photo booth
HTML
3
star
52

incr

incr.it backend
JavaScript
3
star
53

one-click-hugo-cms

CSS
2
star
54

grafana-zero

Python
2
star
55

gif

Simple GIF recorder
HTML
2
star
56

protoc-gen-micro

Protobuf code generation for micro
Go
2
star
57

scaffold

Templates for quick project start
Java
1
star
58

r

Something that rhymes. Or not.
1
star
59

tabs

🎼 A tiny CLI tool to render tabs for music instruments (🎹🎷🎺🎸🪕🪈 and many others!)
C
1
star