as a server-side web framework user (I use Django), I like the way the templates are organized. Page title, css, js, header and footer of the base template are defined as blocks and can be overriden in the child templates.
What is angular's way of doing this?
The content of each page is of course provided by ng-view, other than that, I can't do much. The title tag for example is outside of the view, and I can't change it dynamically.
It would be good to give me an example code of a full-scale project to see how the templates are organized. Most example projects out there are small and don't need inheritance in templates.