I have been struggling to get the ng-include directive to work properly. Despite trying various solutions from stackoverflow, I still can't seem to make it function as expected. Angular is functioning fine throughout my document except for this specific issue. The div in question is not nested within any other elements.
One thing worth mentioning is that I am using the foundation framework. Could this be causing the problem?
Below is the snippet of code from my index.html:
<div ng-include="'partials/menu.html'"></div>
I have confirmed multiple times that I do indeed have a "partials" folder with a "menu.html" file inside it...
In addition to the above, I have also attempted:
<div ng-include src="'partials/menu.html'"></div>
as well as
<div ng-include="'/partials/menu.html'"></div>
Any assistance or guidance on this matter would be greatly appreciated!