Quick Start Guide
How to setup and use the blog
:wq is a minimal Jekyll blog with a split-screen layout, dark mode by default, and a font toggle (sans / serif / mono).
Running locally
fn main() {
println!("hello");
}
docker compose up
Or without Docker:
bundle install
rake preview
Then open http://localhost:4000.
Features
- Split-screen layout: sidebar post list + independent content panel
- Dark mode by default, toggleable with ◐
- Font toggle: sans → serif → mono (persisted in localStorage)
- Supports Google Analytics and Disqus comments
- Jekyll 4 + Ruby 3.3
Customization
Edit _config.yml for site metadata (title, author, social accounts, analytics/Disqus IDs).
Adding posts
rake post title="A Title" [date="2012-02-09"] [tags=[tag1,tag2]] [category="category"]
Drafts go in _drafts/ and are excluded from builds.