bckt (pronounced "bucket") is one more static site generator.
bckt is designed to blend different kinds of content into a single site,
so you can mix long-form posts, link logs, photos, and other content — your personal content bucket :-)
It ships with a clean theme, incremental rebuilds, and a minimal toolchain so you can publish from Markdown or hand-written HTML without ceremony.
Warning
bckt is expected to run in a trusted environment, where templates
and content can be trusted (like your own machine).
Using it to render third-party content (for example a public bckt-SaaS)
is not recommended yet.
- Fast incremental renders with optional watch mode (
bckt dev). - Theme-first workflow powered by MiniJinja templates (
themes/bckt3). - Built-in client-side search index generation and custom template filters.
- Straightforward YAML front matter with automatic tags and archive pages.
Pre-built binaries live on the
releases page. You can also
compile locally with cargo install --path ..
bckt ships with two demo content sets you can use to try out a theme before writing your own posts.
microblog — short titleless notes, good for micro and microx:
mkdir myblog && cd myblog
bckt init --theme micro --demo microblog
bckt devarticles — longer posts with titles, good for modern, bckt3, plain, rntz:
mkdir myblog && cd myblog
bckt init --theme modern --demo articles
bckt devYou can combine any theme with any demo. To try a different theme on the same demo content:
bckt themes install micro
bckt themes use micro
bckt renderThe six bundled themes are: bckt3, micro, microx, modern,
plain, rntz.
You can also check blog.vrypan.net — a live site built with bckt.
bckt init --theme bckt3 # scaffold posts/, templates/, skel/, bckt.yaml
# edit bckt.yaml
bckt-new --title "Hello" # scaffold a new post (prompts for missing fields)
bckt render # generate html/
bckt dev --verbose # preview with live reloadDeploy by publishing the generated html/ directory with any static host.
New to bckt? Start with the Getting Started guide — it walks through installation, setting up a blog, writing posts, publishing, and maintenance.
Detailed guides live in docs/:
- Posts organization, frontmatter, and
.bcktignorefor excluding directories - Theme structure (templates, pages, static assets)
- Attachment metadata (file sizes and MIME types) in templates
- Custom MiniJinja filters such as
format_date - Client-side search integration and configuration tips
