There should be an equivalent in your language to our local proverb that goes like “the butcher is having turnip at dinner”
We’ve finally released our company’s website on Yii, including a blog and a mobile version.
On the app part, it’s really based on the blog demo, so we didn’t need any fancy extension.
We’re using a slightly-adapted 960.gs 12-column grid, Font Awesome font for icons, and quite a bunch of front-end optimization techniques that we’ve learned over the time. On the back-end, it’s a normal Linux-based shared host, with no back-end optimization till now.
The mobile version is a one-column custom —but not separate— one, meaning that the controllers and the views serve slightly adapted content, of course on the front-end, CSS is different from the desktop version, more or less like RESS, but not entirely, as it’s not responsive web design, images and other inline stuff are responsive though.
In the mobile version, we serve Zepto instead of jQuery, and so have adapted (and pushed to Github) some jQuery plugins, included some used by Yii.
Static resources (ie all external css, js, webfonts) are minified and compressed beforehand and stored in minified and min+gz versions, the .htaccess makes sure to serve the gz if supported by the browser, with the correct type mapping, mind you.
HTML is minified by overriding the render() method in the Controller’s base class, and adding a regex to remove unnecessary spaces. I’ve found such scenario for sure on the forum.
I’m on my mobile now. But I can post that code when I access my laptop.