Live data from Hacker News

Static Website Generators

netlify.com

1–10 of 241 posts

Re: Static Website Generators

#2
Yes! I was looking for a decent selection of single-page app SSGs for so long. This is only the second one I've found, the other being Lingon (https://github.com/spotify/lingon), and this one looks like the only one that can still work as a blog.

Does anyone have any feedback or alternatives for SSGs which build static single-page blogs?

Re: Static Website Generators

#3
post #2

Yes! I was looking for a decent selection of single-page app SSGs for so long. This is only the second one I've found, the other being Lingon ( https://github.com/spotify/lingon ), and this one looks like the only one that can still work as a blog. Does anyone have any feedback or alternatives for SSGs which build static single-page blogs?

> single-page app SSGs

How does that work? Isn't "single-page app" the exact opposite of a "static site"?

Re: Static Website Generators

#4
is there an ssg that is entirely web based? I don't want local files or to use a terminal. I would move away from Wordpress (and would like to) if something let me click a few buttons to set up a simple blog. I don't need anything fancy.. Let me make some basic choices and post my blogs.

Re: Static Website Generators

#5
post #4

is there an ssg that is entirely web based? I don't want local files or to use a terminal. I would move away from Wordpress (and would like to) if something let me click a few buttons to set up a simple blog. I don't need anything fancy.. Let me make some basic choices and post my blogs.

Jekyll recently got a first-party admin plugin that might meet your needs[1]. You'd still need to use a terminal to set it up. I'm not quite sure what you mean by not wanting local files, but your files would be wherever you're hosting your site from.

[1] https://github.com/jekyll/jekyll-admin

Re: Static Website Generators

#7
post #2

Yes! I was looking for a decent selection of single-page app SSGs for so long. This is only the second one I've found, the other being Lingon ( https://github.com/spotify/lingon ), and this one looks like the only one that can still work as a blog. Does anyone have any feedback or alternatives for SSGs which build static single-page blogs?

> single-page app SSGs How does that work? Isn't "single-page app" the exact opposite of a "static site"?

The "app" in this case would be client-side logic (e.g. written in JS) which might then render the blog client-side by pulling down the text for the blog. Ultimately, everything on the server is unchanging until you do a rebuild with new content.

So long as the hosted content isn't dynamically generated server-side when you visit, it's static.

Post reply on HN