vote up 12 vote down star
15

In the age of dynamic websites built with layouts and templates, nobody wants to write plain old repetitive static html anymore. But now that you can outsource dynamic features to services like Disqus, and you could get slashdotted/dugg/reddited at any moment, sometimes a static website is best for scalability.

There are quite a few static website generators out there that let you use templates, layouts, alternative markup languages, and other new age stuff. So this question is a bit of a survey. Which do you think is the best, and why?

Here are a few examples to start us off:

  1. WebGen
  2. StaticMatic
  3. Static
flag
1  
Community Wiki? – Greg B Oct 23 at 16:22
Done. I still can't decide which of these things to use. – Nick Retallack Nov 6 at 4:01

13 Answers

vote up 10 vote down

StaticMatic and Static are lesser known. There are more done in Ruby...

  • nanoc
  • Webby
  • Jekyll (which was "ported" to Python/aym-cms as Hyde)
  • Hobix - done by why the lucky stiff sometime ago (it still works)

I just used nanoc for a little project and it was pretty nice.

Don't forget aym-cms (Python), and the others in Perl that have existed since the dawn of time (like the aforementioned WML).

link|flag
But does anyone have a recommendation? Should we split suggestions into separate answers so people can vote on them? – Adrian Mouat Jul 12 at 11:40
vote up 7 vote down

I just went through a review of static web site generators, I found about 25, mostly based on Ruby and a few using Python. The two that came out strongest were webgen and nanoc, I went for webgen in the end but it was close.

Further details and a full list of the software I looked at are here.

link|flag
vote up 2 vote down

Here is another example: Bricolage

A static web page is also much more secure than a dynamic one. Nobody would be able to deface one. There is no need for security updates either. Go static!

link|flag
vote up 2 vote down

If it's a simple blog, a while back I wrote a quick Python utility that would generate static pages:

http://github.com/dz/chisel/tree/master

My primary goal was to make it easy to extend and edit, hence the relative few number of basic page types it generates.

link|flag
vote up 1 vote down

If you are looking for python based tool check out Tahchee. It uses Cheetah template system.

link|flag
vote up 1 vote down

I've got a little project going on that tries allow focus on writing content and designing nice HTML/CSS. All pages are flat text files, I like to think of it as website by config files:) http://pagegen.phnd.net

link|flag
vote up 1 vote down

After searching around for a static site generator (I only wanted to use Ruby, which essentially limited the scope), I had a very positive experience with Webby. I made a "really-static" site with it (playcode.nl), as well as a blog (not-so-static, with the source code kept on github - blog.writelesscode.com). What I liked about it is extended set of features. For example, you can combine filters for the same page (no problem to use ERB together with Markdown). Nested layouts? No problem. Code highlighting worked well, too. And after all, the source code is pretty readable (although it feels a bit Java-ish to my opinion) - so, I could easily add a feature that I was missing (which was extracting excerpts from posts on the index page of the blog).

link|flag
vote up 0 vote down

I use ikiwiki as my wiki software, which in contrast with most wiki software generates a static view of the wiki. Whenever you make a change, it reruns the generator program that generates new versions of any static pages that need to change. It's not designed for huge installations like Wikipedia, but certainly for small to medium size wikis it works well.

link|flag
vote up 0 vote down

"Website Meta Language" (often confusingly shortened to WML, despite being absolutely nothing to do with WAP) works well for me. apt-gettable on Debian.

link|flag
<offtopic> And it has nothing to do with yet another WML (wesnoth.org/wiki/ReferenceWML). </offtopic> – jetxee Apr 29 at 15:03
vote up 0 vote down

maybe take a look at growl ...

link|flag
dead link, please update – samgoody Nov 9 at 7:47
vote up 0 vote down

I'd like to add CityDesk from FogCreek Software.

Though no longer being updated, it is an incredibly easy to use little system that lets you crank out static websites at a pretty quick pace. Some of the features are a bit dated, but I like the simplicity of it's scripting language and templating system.

Michael

link|flag
vote up 0 vote down

Two python based ones: blatter and lanyon.

link|flag
vote up 0 vote down

Don't forget that there are lots of good full-scale CMSes out there that create static files. Movable Type and WordPress have great communities built up around them, with lots of plugins and support.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.