A minimal blog that just works. No configuration, no social links, no analytics dashboards. Just write markdown, publish, done.
Philosophy: Let it done.
Most blog frameworks ask you to configure:
- Social media links
- Analytics tracking
- Comment systems
- Newsletter signups
- SEO metadata
- ...and 47 other things before you write a single word
Poldarn asks you one thing: Where's your markdown?
# Clone
git clone https://github.com/poldarn/poldarn-book.git my-blog
cd my-blog
# Write
echo "# Hello World" > content/index.md
# Publish
npm install && npm run buildDeploy the out/ folder anywhere. That's it.
content/
├── index.md → yourblog.com/
├── about.md → yourblog.com/about
└── posts/
├── first.md → yourblog.com/posts/first
└── second.md → yourblog.com/posts/second
Write markdown. Files become pages. Folders become sections.
- Zero config - No
config.yaml, nosettings.json, no setup wizard - File-based - Your content is just markdown files in a folder
- Dark mode - Automatic, based on system preference
- Fast - Static HTML, no JavaScript bloat for reading
- Clean typography - Optimized for reading, not for showing off
Intentionally absent:
- Social media links
- Analytics / tracking
- Comment systems
- Newsletter forms
- Share buttons
- Tags / categories system
- Search (use Cmd+F)
- RSS feed generator
- SEO optimization tools
If you need these, there are excellent frameworks like Hugo, Astro, or Next.js blog templates. Poldarn is for when you just want to write.
Vercel (easiest)
npx vercelNetlify
npm run build
# drag & drop the `out/` folderGitHub Pages
npm run build
# push `out/` to gh-pages branchAny static host
npm run build
# upload `out/` folderWant different colors? Edit app/globals.css.
Want a different font? Edit app/layout.tsx.
That's the extent of "configuration" you'll need.
npm install
npm run devOpen localhost:3000. Edit markdown. See changes instantly.
Next.js, React, TypeScript, Tailwind CSS. But you don't need to know any of that to use it.
Named after a character from K.J. Parker's novels - someone who builds things and gets them done without unnecessary complexity.
MIT - Do whatever you want with it.