File Structure:
--app
--partials
--navbar.html
--submit
--submission.html
index.html
I have an ng-include inside of my submissions.html:
<ng-include src="'app/partials/navbar.html'" ></ng-include>
Nothing shows up. However, if I stick the same thing into index.html, the navbar shows up. I thought it might have to do with relative apths to the current html file, so I tried src="'../partials/navbar.html'"
with no luck either.
Is there something special that needs to be done to get an ng-include to show inside of an ng-view
template?
Similar Questions that did not help: