Movable Type.
Poll: What's your favorite static site generator?
51–60 of 124 posts
Re: Poll: What's your favorite static site generator?
#52I like Pelican (for blogs). Python, reST + Jinja. Looks like your list is basically Ruby, Node and PHP, excluding all the Python and other language options.
Re: Poll: What's your favorite static site generator?
#53Coleslaw, ye olde Common Lisp static site generator (with optional dynamic backends, if that's how you roll) http://www.cliki.net/coleslaw
Re: Poll: What's your favorite static site generator?
#54Coleslaw, ye olde Common Lisp static site generator (with optional dynamic backends, if that's how you roll) http://www.cliki.net/coleslaw
Re: Poll: What's your favorite static site generator?
#55Now,i'm a web developer and i'm new to this. why don't anyone write a html page from scratch? what is the real use of site generator? i have worked on wordpress, drupal, and others. Anyone please be helpful to me.
Site generators of this type form a happy medium between the inefficiency of writing HTML from scratch (after all, most boils down to templates filled with content) and the inefficiency of regenerating static content upon every request (as WP and Drupal are prone to do). If there's no dynamic stuff on your site, why pull everything from a database? And if you save time by using templates, why roll your own HTML?
Re: Poll: What's your favorite static site generator?
#56Simple and to the point. Probably not good for larger sites, but it works for small ones.
Re: Poll: What's your favorite static site generator?
#57cached XSLT output :)
Re: Poll: What's your favorite static site generator?
#58Branch with ruby 1.9 fixes is at https://github.com/namelessjon/webby
It is not under active development, but is for me feature-complete, stable and incredibly flexible. Advantages are:
- pure ruby (no liquid templates needed)
- each page has its own subdirectory where one can put images, scripts etc; your article becomes a 'package'.
- chained templating filters; you can do erb->markdown->your custom filter with minimal effort.
- mostly implemented by extending rake tasks, no extra api to learn and if you know rake you can continue adding features forever.