I'm currently working on a website using AngularJS. Within my view, there's a file named menu.html
that handles the navigation bar display:
<div class="container">
<ul class="nav nav-pills">
<li ng-repeat="menu in navigation" class="{{menu.classis}}"><a href="{{menu.link}}">{{menu.name}}</a>
</li>
</ul>
</div>
While this code functions correctly on my desktop, when hosted on Google App Engine, the navigation bar fails to appear.
The issue seems to lie with resolving {{menu.classis}}
and {{menu.link}}
.
What could be causing this problem?
I'm quite new to AngularJS and Google App Engine, so I might not be using the correct terminology. Here's the link to the hosted website: