Hello, world

· Craig Weber · meta

This site is being rebuilt. The posts you may be looking for are on their way back; in the meantime, this placeholder proves the pipeline works end to end: markdown in, HTML out, feed and all.

The site is generated by futhorc, a small static site generator that now lives in the go/futhorc tenant of my monorepo. Naturally, the first post through a freshly rebuilt pipeline has to be a hello-world — including a code block, so syntax highlighting is exercised from day one:

package main

import "fmt"

func main() {
	fmt.Println("Hello, world")
}

Real content lands soon.