You can choose the way you want, since it's a SPA => loaded once so no poor performance if in head.
If you declare angular.js
on the bottom part of the page, there's a good way to avoid the case
for missed interpolated variable:
You should use the ng-bind
directive in your home template instead of the direct interpolation notation:
<div ng-bind="model.value"></div>
instead of {{model.value}}