Im not trying to build a system.
I was just looking at them and started looking at file types and noticed everything was .html.
That seemed weird. I've noticed that a lot of news sites use html files as well.
If you guys were going to build a massive CMS/News/Blog system, what would you do?
That's really all I'm after here, some discussion about performance merits of serving a PHP page VS. server an HTML page. Obviously there'd be PHP on the authoring side, but everything you author could be written out to a straight HTML page.
You could store everything in a database and batch it up, and push out new pub at every hour.
or, you could server up PHP, but use caching so that the server doesn't generate a new page every hit.
Obviously there's a billion ways to do it. What's the most logical?