From: Martin DeMello Date: 2009-12-09T18:25:15+09:00 Subject: Re: haml On Wed, Dec 9, 2009 at 12:04 PM, Rajinder Yadav wrote: > > I will take a closer look at Webby. Not sure what it is suited for by > reading the website right now, but I am sure the light-bulb will go on > eventually =) what webby lets you do is maintain a website as a tree of static template files on your local directory. your web dev workflow goes 1. make changes to templates 2. compile the templates into a website 3. test locally 4. when satisfied, push the static html files to your remote site it gives you the best of both worlds - templating and code reuse like you get in dynamic sites, but no need to have the html actually generated on your webserver. martin