in reply to More on Web Application Frameworks
Just something to keep in mind, when your generating the html output, is to make sure you keep all the html seperate from the style. I.E. you can put all your 'headers' in <h1>, all the body paragraphs in P, and so on. The advantage of this is you can write a style sheet for it, to control every aspect of how it displays, then you can change the stylesheet at any time, without changing the html output at all. This allows for very easy redesigns, different 'schemes', etc etc. Basically, keep content seperate from style from design.