Tag: blog

Migrating from .dev to .com domain

I've been running this blog on peterbabic.dev for a few years. Recently I migrated it to peterbabic.com. This post is a bit late because I wanted to make sure everything was working correctly before writing about it. How I got the domains The .dev domain wasn't my first choice. I...

Making my blog dual language with Astro

I've had the peterbabic.sk domain sitting unused for years. Meanwhile this blog has been English-only. Recently I figured why not use both? The Slovak version could help with local SEO and make my content accessible to people who prefer reading in Slovak. The challenge was doing...

Fragment link checking in Astro

In my previous post I covered how Zola validates internal links and anchors at build time. As I'm considering migrating my blog to Astro, I needed to solve the same problem: how do I ensure that fragment links (anchors) actually point to existing headings? Here's how I set up fra...

Mastering internal links in zola

When building a static site with Zola, one common issue is discovering broken internal links only after deployment. External links pointing to your own content (like post) are treated as external by Zola's link checker, missing valuable validation opportunities. Here's how I conv...