accidentally found that after the page uses ng-include to include the template page, the link to the current page in both the parent page and the template page is invalid. is this a mechanism of angularjs? Do not understand what is the reason, I do not know what way to solve it?
for example, a parent page has a link in the index.html, page
index.html
<a href="index.html"></a>
another template page that contains navigation
nav.html
<div>
<a href="index.html"></a>
<a href="list.html"></a>
</div>
now, the parent page includes the template page with ng-include
index.html
<a href="index.html"></a>
<div ng-include=""nav.html""></div>