this post was submitted on 28 Oct 2024
152 points (98.7% liked)

Selfhosted

52802 readers
781 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
 

Hi,

I'm interested in setting up a small static-site-generator site. Looked at 11ty recently and feel pretty uncomfortable with the amount of javascript and "funny language" churn just to make some html happen.

Do you know of any alternative that's simpler / easier / less complicated dependencies? Or do you have an approach to 11ty that you think I should try?

Thanks in advance for any input, it's appreciated!

top 50 comments
sorted by: hot top controversial new old
[–] pseudonym@monyet.cc 34 points 1 year ago (3 children)

I use Hugo and I've been pretty happy with it. It has a lot of layout templates you can use out of the box so you don't need to learn a new templating language unless you want to do customizations. I write blogs in markdown and it's automatically rendered and published.

[–] bahbah23@lemmy.world 14 points 1 year ago (1 children)

But as soon as you do want to customize it, you're stuck learning one of the most esoteric languages that wasn't meant as a joke.

[–] ctag@lemmy.sdf.org 4 points 1 year ago

Thanks for the heads up. That feels like the same roadblock I got with 11ty. It ran OK on markdown, but one you dig into how wide the customizations go I couldn't keep up.

[–] DichotoDeezNutz@lemmy.world 6 points 1 year ago (1 children)

I used Hugo for my portfolio site, and it's great if you like an existing theme, but making one from scratch is a challenge. The documentation is unclear and there's a chicken and egg problem about how to learn Hugo.

The go templating is OK, I prefer other syntax but it works.

[–] ctag@lemmy.sdf.org 2 points 1 year ago

Good to know. Thanks!

load more comments (1 replies)
[–] TrueMonoxidist@lemmy.zip 27 points 1 year ago (2 children)

Zola. Similar to Hugo, but newer and written in Rust.

https://www.getzola.org/

[–] rutrum@lm.paradisus.day 7 points 1 year ago

I used Zola for a while, but at the end of the day there wasnt enough themes available that fit what I was looking for. I ended up messing with the templating engine to get what I needed.

I suggest OP choose Hugo over Zola, in the hopes that they find a theme that suits them best and for the most part prevents them from having to touch templating to begin with.

load more comments (1 replies)
[–] bruhbeans@lemmy.ml 13 points 1 year ago (2 children)

https://getpublii.com/

It's a GUI app that runs on your local system and pushes sites to a server.

I’m planning on porting my Wordpress site to this. I haven’t used it yet but based on what I’ve read it will be easier than Hugo.

[–] ctag@lemmy.sdf.org 2 points 1 year ago

Thank you for the recommendation!

[–] thagoat@lemmy.sdf.org 11 points 1 year ago (4 children)

I think you might like hugo

It's what I use for my blog

[–] moroni@lemmy.ca 6 points 1 year ago (1 children)
load more comments (1 replies)
[–] sxan@midwest.social 4 points 1 year ago

Seconded. OP, if you can write Markdown, Hugo will turn it into a website.

[–] ctag@lemmy.sdf.org 3 points 1 year ago

Thank you for the recommendation!

And best of luck with the repair. That's a crazy bill estimate.

[–] Churbleyimyam@lemm.ee 2 points 1 year ago (2 children)

Do you know if hugo blogs can federate?

[–] thagoat@lemmy.sdf.org 3 points 1 year ago

No, hugo does not federate.

[–] rsolva@lemmy.world 1 points 1 year ago* (last edited 1 year ago)

It has RSS built-in, but since it is a static site generator, it does not support ActivityPub out of the box. But I do think I have seen implementations with some custom JavaScript.

[–] ikidd@lemmy.world 10 points 1 year ago (1 children)

This might be what you're looking for: Zola

Single binary that lets you keep your markdown/config in git and just build it from the git clone folder you're in at the time.

I know some people that have moved off of Hugo to this, and Alex from the Selfhosted podcast recently talked about it on their show.

load more comments (1 replies)
[–] sk@hub.utsukta.org 6 points 1 year ago (1 children)

I found pelican to be quite simple to start with and depending on how deep you want to go it can be quite customizable. Being proficient in python helps.

[–] ctag@lemmy.sdf.org 1 points 1 year ago

That looks neat. Thanks!

[–] morethanevil@lemmy.fedifriends.social 6 points 1 year ago (1 children)

Use Publii, it has a WYSIWYG editor, a block editor and a markdown editor. It creates the files on your PC and can upload it to your server. Just point your webserver to the uploaded folder.

Very beginner friendly ☝🏻

[–] ctag@lemmy.sdf.org 2 points 1 year ago

Thanks for the recommendation!

[–] avid1@lemmy.world 6 points 1 year ago (1 children)

I like using Hugo at present

[–] ctag@lemmy.sdf.org 2 points 1 year ago

Thanks for the recommendation!

[–] variants@possumpat.io 4 points 1 year ago* (last edited 1 year ago) (3 children)

Have you checked out grav https://learn.getgrav.org/17/basics/what-is-grav

https://github.com/getgrav/grav

I use it just to make simple markdown sites for info like my gaming servers or if I feel like making a random blog post

[–] dudenas@slrpnk.net 4 points 1 year ago (1 children)

Technically Grav is not a static site generator, it is just a flat file cms. It means there is no need to generate all the files of website and upload them to server each time you write a post. I have no idea why people like static sites for blogging.

[–] sik0fewl@lemmy.ca 2 points 1 year ago

Use rsync and only upload the files that have changed.

[–] exu@feditown.com 3 points 1 year ago

As the sibling comment says, not a static site generator. If you want to customize pretty much anything about the layout or theming you still need to use Twig, CSS and if you're unlucky JS.

[–] ctag@lemmy.sdf.org 2 points 1 year ago

Thanks for the recommendation. I actually did look at grav a while back, but I can't recall why I moved on. Will give it another pass.

[–] ctag@lemmy.sdf.org 4 points 1 year ago (3 children)

I did try setting up 11ty, despite my misgivings over node.js. Using Markdown went OK, except it wouldn't render explicit tag parameters to allow me to do one-off formatting.

load more comments (3 replies)
[–] xavier666@lemm.ee 4 points 1 year ago (1 children)

I think mkdocs is easier than hugo but less flexible in terms of capability. However it serves all my needs (list of webpages accessible from a central frontpage)

[–] ctag@lemmy.sdf.org 1 points 1 year ago
[–] filcuk@lemmy.zip 4 points 1 year ago (1 children)

In case you're familiar with Obsidian, there's Quartz: quartz.jzhao.xyz/ Runs in docker too, practically zero config to start

load more comments (1 replies)
[–] richieadler@lemmy.myserv.one 3 points 1 year ago (1 children)
[–] ctag@lemmy.sdf.org 2 points 1 year ago

Thank you for the recommendation!

[–] JackbyDev@programming.dev 3 points 1 year ago (1 children)
[–] ctag@lemmy.sdf.org 1 points 1 year ago

Neat, thanks!

[–] Hawk@lemmynsfw.com 3 points 1 year ago* (last edited 1 year ago) (1 children)
load more comments (1 replies)
[–] jjlinux@lemmy.ml 3 points 1 year ago (1 children)

I'm looking for something similar that I can host in blue host, but all there is, apparently, is WordPress (hell no), joomla and drupal, and these are certainly not static.

[–] ctag@lemmy.sdf.org 3 points 1 year ago

That's like the OG crew of web content haha. I used to be pretty big on Wordpress, but then two of my sites got compromised (through a plugin probably?), and of course the recent kerfluffle going on.

[–] fmstrat@lemmy.nowsci.com 3 points 1 year ago (2 children)

Docusaurus. It's all markdown.

[–] lefaucet@slrpnk.net 3 points 1 year ago* (last edited 1 year ago) (1 children)

Thanks for the rec! Looks awesome; Imma try it :)

https://docusaurus.io/

[–] lefaucet@slrpnk.net 3 points 1 year ago

Oof. Meta open source. Srsly sus. •͡˘㇁•͡˘

[–] ctag@lemmy.sdf.org 1 points 1 year ago

Will give that a look, thanks!

[–] vegetaaaaaaa@lemmy.world 2 points 1 year ago

https://www.sphinx-doc.org/ + https://pradyunsg.me/furo/ theme + https://myst-parser.readthedocs.io/ markdown parser + https://sphinx-design.readthedocs.io/ extensions.

Just drop all your markdown files in a directory and run sphinx-build. Highly customizable but also works out of the box

[–] GameGod@lemmy.ca 2 points 1 year ago (1 children)

I want to second Pelican for Python. Really easy to set up and get going. No need to learn a complicated templating language (it's jinja2, which is what everything uses).

[–] ctag@lemmy.sdf.org 2 points 1 year ago

Thanks for the recommendation!

[–] arscynic@slrpnk.net 2 points 1 year ago* (last edited 1 year ago) (2 children)

Codeberg Pages if you don't mind a give-or-take weekly 30 min downtime. GitHub Pages if you do. GitLab Pages if you have a creditcard which they require to verify your identity.

load more comments (2 replies)
[–] agelord@lemmy.world 1 points 1 year ago* (last edited 1 year ago) (1 children)
load more comments (1 replies)
load more comments
view more: next ›