http://backbonejs.org/#examples
If you're interested, email me a brief paragraph of description, and a 550px-wide screenshot of Posterous Spaces.
Edit -- Adam followed up, and I've posted it up here:
Our new Posterous Bar -- http://blog.posterous.com/introducing-the-new-posterous-bar -- was also built using a few Backbone views for those interested. We love Backbone.
PS: I'm about to start reading the new Javascript Web Applications book by Alex MacCaw as I'm very interested in learning more client-side development. This is very new to me.
Backbone views handle event binding and rendering, so they're more similar to Rails controllers, if anything.
https://github.com/documentcloud/documentcloud/tree/master/p...
We keep our models and collections very bare. They essentially just have methods that communicate with our API and that's it.
We handle subviews by appending them in the render method. For instance, in a post list, we append each post list item in the post list's render method.
I'm sorry if that doesn't answer your question. I guess the essence of it is we append subviews in the render method. Is there anything specific about this you want to know?