Intro
2025-10-16
Welcome to my new website! This is the first post on my new minimal static site generator built with Go.
Why Go?
I wanted something simple, fast, and with minimal dependencies. This generator:
- Uses only Go standard library
- Compiles SCSS via the
sassCLI - Converts markdown to HTML via
pandoc - Generates static HTML files
- Served via Caddy
What’s Next
I’ll be adding a photography gallery in the next phase. Stay tuned!
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}