Every time I execute
/sites/all/themes/theme/js/controller.js
$scope.template = 'partials/tpl.html'
/sites/all/themes/theme/js/index.html
<div ng-include='template'></div>
/sites/all/themes/theme/js/partials/tpl.html
<b>Oh wow!</b>
I essentially relocated all angular-related content into the js folder.
It is coming back as localhost/partials/tpl.html
when I actually need
localhost/sites/all/themes/js/partials/tpl.html
. How can this be resolved without resorting to using an absolute path?