For bloggers
The offer, in one sentence: a comment section for your blog, without you having to run a comment section.
PopsicleBoat is a small online harbor for creators — no ads, no tracking, built and looked after by one person. If your blog has no comments (on purpose, or because every option is either surveillance-ware or a maintenance chore), the boat can host the conversation instead: your blog stays your blog, and each post gets a companion discussion thread here.
How it works
- You get a space. Email me and I'll set it up the same day — or claim it yourself: sign in, add one link to popsicleboat.com to your blog, and the space exists on the spot.
- Each post gets a thread. You (or I, happily, while you try it out) post a short companion thread — the post's title and a link back to your site.
- Your posts link the thread. Add one link at the bottom of a post — "Discuss this post" — and you're done. Readers click through, read freely, and reply if they care enough to join.
See it working
This isn't hypothetical — my own blog uses it. Here's a post: What's new aboard. Here's its discussion thread on the boat. The link at the bottom of the essay is the whole integration.
What your readers get
- Reading is open — no account needed to follow the conversation.
- Replying takes an account, which is the point: replies come from named members of a small community, not drive-by spam. You'll never moderate a spam queue.
- Your space gets its own RSS feed automatically, so readers can follow your discussions from any feed reader.
- Writing supports simple formatting — links, emphasis, code — with a live preview.
Your site can keep the comments
Every thread's public replies are also published as plain JSON at the thread's address plus /replies.json. A static site can fetch that at build time and print the conversation on the post page itself — no script, no iframe, nothing in your readers' browsers.
My own blog is wired this way, and it makes the no-lock-in promise physical: the copies your site builds are yours to keep, whatever happens to the boat.
The JSON is small and stable — this is the whole shape:
{
"thread": { "title": "…", "url": "…", "reply_count": 2 },
"replies": [
{
"author": "username",
"body_html": "<p>rendered, sanitized markup</p>",
"body_text": "the same words as plain text",
"posted_at": "2026-07-13T02:18:26Z",
"url": "the reply's address aboard",
"depth": 0
}
]
}
Replies arrive in thread order — every nested answer directly after its parent — and depth says how deep it sits, from 0 at the top. Indent by it if you like; my blog caps the indent at three levels so a long exchange stays readable.
Only what a signed-out visitor could read is included, deleted replies disappear from the JSON on your next build, and if the boat is ever unreachable your build should just skip the section — the page stays whole.
And your page can keep itself fresh: put a build hook (the plain POST URL Netlify, Vercel, and Cloudflare Pages all offer) in your account settings and the boat pings it when replies land on your threads, wherever they live — one debounced ping per conversation burst, so a lively thread doesn't trigger twenty builds. A space's edit form takes a hook too, for rebuilding on anything that moves in a dedicated space.
The promises
- No lock-in. The integration is a link on your site. Remove the link and you've left, nothing held hostage.
- No ads, no tracking, ever. The privacy policy is one page of plain sentences.
- Free. The boat is a labor of care with bounded costs, not a growth machine with a pricing page waiting to hatch.
- A person answers. Moderation questions, feature wishes, or "this feels off" — you email me and I reply.
The link, if you want to style it
Anything works — it's just a link — but here's a plain version to paste:
<p>
<a href="https://www.popsicleboat.com/c/YOUR-SPACE/posts/THREAD-ID">
Discuss this post →
</a>
</p>
Interested?
Send your blog's address to jakeva [at] gmail [dot] com. I'll set up your space the same day and send you the links — and if you try it and it's not for you, no hard feelings and nothing to uninstall.
Or claim your space yourself — sign in, prove the blog is yours with a link, done.