this post was submitted on 22 Sep 2025
63 points (97.0% liked)

Selfhosted

51692 readers
580 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

I'm looking for a tool to generate a simple personal website (like an online business card) to self host. Preferably a static site generator.

I'm now using Hugo, but it does too much for me and changes too often. (I can't update my current page, because the template is no longer arond)

you are viewing a single comment's thread
view the rest of the comments
[–] jcolag@lemmy.sdf.org 9 points 1 day ago (1 children)

Personally, after churning through all the static site generator options, I landed on Jekyll, one of the first of them. It's definitely not the sexiest solution, but it's Markdown-in and HTML-out (my main page is still raw HTML/CSS from like twenty years ago, though), was the easiest for me to match the styling that I wanted from the base theme, and it's been along for long enough that it's mostly surprise-free.

That said, if you only want the equivalent of a business card, I might argue that setting up anything is probably overkill, all overhead for just a tiny bit of content. In that case, you can grab some modern-ish HTML boilerplate like this one, then use Pandoc to convert the Markdown (which you presumably already know if you're messing with Hugo) to the HTML that goes between <body> and </body> in the boilerplate. Add CSS, and you're done.

Oh, and actually, depending on how broadly you want just the "business card" idea, something like Littlelink might also fit your needs, where you hack out the links that you don't care about and fill in destinations for the rest.

[–] dogs0n@sh.itjust.works 3 points 1 day ago* (last edited 1 day ago) (1 children)

+1 for just using html & css if it's literally just an online business card (I'm sure theres millions of themes you can easily modify the source of and there won't be updates to work around).

A generator is only really useful if you have blog posts, multiple pages, something that changes often, etc, right?

[–] jcolag@lemmy.sdf.org 2 points 19 hours ago

That's close to how I think about it, yeah, but I'd push more in terms of the investment. Since Jekyll, Hugo, Svelte, Eleventy, and the rest just generate flat HTML to upload, there's nothing wrong with using it for a single page. But you end up needing to learn the whole build-and-deploy process and all the layout quirks, which (especially if you're starting from scratch) will take longer to get the page out. And like you point out, the more material you have, the better that investment looks.

But then, if you already know the system, there's no new investment, so it becomes more of a toss-up whether to build things that way, since a page of Markdown is slightly faster to write than the equivalent HTML.