Hello, World

This is the first post on webblogsheli, a blog engine built in Rust and deployed as static files to Cloudflare Pages.

Posts live as plain markdown files in content/posts/. The build binary parses them, renders Casper-inspired templates, and writes everything into dist/ — no server, no runtime database for content.

Comments and other dynamic bits are handled separately through Supabase.

fn main() {
    println!("fast, static, done");
}

Comments