54

Hey, just wanted to drop this here. It's a technical follow-up to The Unreasonable Effectiveness of Static Sites which was reasonably popular, and explains the components of a static site's stack.

top 20 comments
sorted by: hot top controversial new old
[-] BangersAndMash@lemmy.world 12 points 4 months ago

Just last week I decided to try a different tech than I'm used to to run up a site. I did a little research then searched GitHub and found Hugo. I read the Hugo docs, followed their beginners guide and... Didn't get fucking anywhere. Their docs are out of date, the examples are out of date. It looked so promising but my brain works best when referencing examples and when I couldn't even get those to work, well, I don't have time for that these days.

If anyone knows another static site generator with up to date documentation and an easy to run up example please let me know.

[-] fd93@programming.dev 7 points 4 months ago* (last edited 4 months ago)

I use Pelican for the site and it's working great. :)

Astro is also popular and will be familiar if you've developed with React before as they support JSX templates.

[-] aarmea@lemmy.world 5 points 4 months ago* (last edited 4 months ago)

Hugo was born out of Google so it has all of the same benefits and drawbacks as every Google project (both internal and external):

  • Lots of capabilities. You name it, it's a feature.
  • To support all of those capabilites, there's abstractions for everything -- enough to make you go a little insane if you have to go through the code.
  • Lacking documentation. Nobody gets promoted for writing docs, so if you really need to know how that feature works, you have to go through the code.
  • May be abandoned at any time (but pull requests/CLs are always welcome).
[-] moonpiedumplings@programming.dev 3 points 4 months ago* (last edited 4 months ago)

I use https://quarto.org

Pros: Markdown, easy to use. Docs are very good. Also, despite being a a static site, it comes with fulltext site searching, all done locally, enabled by default:

https://quarto.org/docs/websites/website-search.html

It uses pandoc under the hood, so anything that works with pandoc works there.

Cons: No support for any kind of template engine beyond simple variable replacement, as far as I know.

[-] Iapar@feddit.de 2 points 4 months ago* (last edited 4 months ago)

I used Astro. It is a start but you can incorporate any us framework you want to.

The Docs are great which is why I used it.

[-] jadero@programming.dev 2 points 4 months ago

I tried a few. Zola was the only one I got far enough with to actually get my site deployed.

Some of that might be that I learned stuff from my previous failures, but I really feel like the combination of the way it works and the Zola-specific themes are what worked for me.

[-] knfrmity@lemmygrad.ml 2 points 4 months ago

That's interesting, Hugo is the only SSG I've had luck with so far. I'm kind of stuck on Docusaurus at work and it's a disaster.

On the face of things they're all so simple, but aren't documented well for users new to SSGs, and the build often spits out something unexpected with no way to figure out why.

[-] shnizmuffin@lemmy.inbutts.lol 2 points 4 months ago

11ty is great, especially since it's very BYO in terms of templating languages. (I started with nunjucks until I figured out the magic that is webc.)

[-] oftencurious@programming.dev 1 points 4 months ago

Hexo has been working great for me. I found the documentation great as well.

[-] rutrum@lm.paradisus.day 1 points 4 months ago* (last edited 4 months ago)

I use zola for my sites. It's got not as many templates as hugo but my sites don't use templates and I found it very straightforward to use from scratch.

[-] monomon@programming.dev 6 points 4 months ago* (last edited 4 months ago)

For this reason I'm building my own generator in Common Lisp, leveraging cl-who and parenscript. All components are descibed in one place and render as web components, which allows me to attach dynamic behaviors easily.

This works great for business-card style sites, deployed to netlify.

[-] monomon@programming.dev 2 points 4 months ago

Another cool thing I realized - you avoid the chance of some framework updating under you and breaking everything. It's a bit like pdf, it gets fixed and generally untouched.

[-] Sir_Kevin@lemmy.dbzer0.com 2 points 4 months ago

I must sound like an old fossil but I just use windows notepad to build any basic sites that don't need like a shopping cart or anything complex.

[-] monomon@programming.dev 2 points 4 months ago

A generator can help if you have a bunch of data that you need to convert to some html structure. I know what you are saying though, as little complexity as we can get away with, innit :)

[-] Lmaydev@programming.dev 1 points 4 months ago

The advantage of static site generators is you have your template and it's filled by the data for each page. It's generally very simple and intuitive.

The problem with doing it your way is if you need to change a common element you have to edit every page. Instead of just changing the template.

Markdown to html just works so well as all your pages are structured the same.

[-] Sir_Kevin@lemmy.dbzer0.com 2 points 4 months ago

I use PHP to generate anything repetitive. With that and CSS it's pretty easy to make site wide changes.

[-] cafuneandchill@lemmy.world 1 points 4 months ago

What would be the advantages of these methods over something like Neocities?

[-] fd93@programming.dev 2 points 4 months ago

For me, I write notes in Markdown anyways as part of a Zettelkasten, and by setting up my site this way I can stay in my development / note taking environment (nvim) and push stuff up to the site very quickly. It's far easier as a developer to work off-the-cuff with this type of workflow, at least for me.

Also, would be very easy to self-host or move provider if Vercel or any other provider goes down.

[-] cafuneandchill@lemmy.world 1 points 4 months ago

I see, that makes sense

[-] HamsterRage@programming.dev 1 points 4 months ago* (last edited 4 months ago)

I use Markdown with Jekyll because it integrates nicely with GitHub Pages and I can run it locally for authoring. There's tons of support for it, as far as I can tell. Jekyll uses Liquid for templating, and it seems pretty good. For layout, I use Minimal Mistakes which has a really nice feel and it's comparatively easy to customize. Once I was through all the layout configuration stuff, it's really just a matter of writing articles and pushing them up to GitHub - rarely fiddle with anything technical these days.

this post was submitted on 19 Feb 2024
54 points (95.0% liked)

Programming

16210 readers
162 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS