It is rather painful with all the tons of generic css, js and font files that are rather big 100's K's.
Now I'm not a n00b and I was able to CDN source myself and I am a pioneer when it comes to serving content thru HTTP.
However for typical users of these templates,
Why don't you pile them (or fonts/CSS/JS) in some Git repo and serve them thru CDN as a distribution channel?
There are public CDNs which allow hot linking with even release specific tags to lock in specific assets to fixed version e.g. template version.
Some of these CDNs even minimise JS automatically on the fly and provide very good compression thru Gzip.
I don't see anyone wanting to modify jQuery or Bootstrap which btw have CDN distribution which could be linked.
And even if someone in remote case wants custom version of whatever they will just host it themselves or throw it to Github and CDN it.
Also benefit of CDN is that most ISPs have POPs to allow minimal latency.
I already CDNised all my static assets but I would like to see proper use of template distribution which makes my job much easier integrating these assets and use em in more sites as it was easy to integrate.
On my project also I currently have 40+ assets total on a very simple web page and while Chrome by it's own limitation loads only six same time with a latency of 100ms each makes total load time longer than I would like - typical problem with heavy small asset JS/CSS sites which there is limited improvements I can obtain VS low hanging tree with CDN and compression and ensuring loaded assets are small. Automatic dependency management would be really nice that builds the actual used css, js etc in but now that happening with modern web developers in general is remote looking at Node.JS modules directories lol
