ERB is simply embedded ruby, it has no limitations. It is also totally not secure when used on a server.
My guess security of GitHub Pages is the reason for using Liquid in Jekyll. For generating static pages on your desktop before uploading Liquid is simply not needed.
I am a bit surprised jekyll is so heavily promoted as a static site tool(saw it twice on HN front page already) while an elegant and seemingly more powerful ruby application (webby) already exists for this purpose.
From what I have just read about Webby, it seems like it does not support topics and categories like Jekyll does. However it does have a wide range of rake tasks which do some things like offer a variety of deployment options, logging to growl, and validating links.
There are differences in the philosophies behind the 2 projects. They are both static site generators however Jekyll is more oriented for maintaining blog-style sites. Webby lacks the ability to organise content the way that Jekyll does.
Perhaps most importantly, Jekyll is now available as a free, hosted solution with GitHub - a great way of inviting the large community of developers active in that community to contribute to the project.
I am not saying one is better than the other. They seem to accomplish slightly different things although the method in which they go about it is somewhat similar.
Well if that's the case and if properties are available on a site-wide basis like Jekyll's topics and categories are, then yes - it certainly seems very capable and something I would like to have a crack at using.
Consider Webby and Jekyll as descendents of a common ancestor idea. They share many things in common but are adapting to different needs. Most importantly, because Jekyll is restricted to Liquid for scriptability, it is safe to run server-side. Jekyll also processes non-Jekyll (plain HTML) sites unchanged, whereas Webby refuses to run at all without a config file. Jekyll also relies more heavily on conventions to reduce the organizational overhead of the maintainer. Webby is a great system, and I'd like to pull over some features from it, but I will do so under the philosophy and adaptations of Jekyll. Besides, if you like how Webby works, then you can use it to generate a site and push that to GitHub, just like Webby intends for you to do!
My guess security of GitHub Pages is the reason for using Liquid in Jekyll. For generating static pages on your desktop before uploading Liquid is simply not needed.
I am a bit surprised jekyll is so heavily promoted as a static site tool(saw it twice on HN front page already) while an elegant and seemingly more powerful ruby application (webby) already exists for this purpose.