Okay so there's a few things going on here: 1. The main page has been split into pieces stored within views/ 2. The nav buttons are working and have a swanky animation to them 3. Some other changes throughout that I've simply lost track of from not committing frequently enough
6 lines
276 B
HTML
6 lines
276 B
HTML
<div class="navButtons" ng-controller="navButtons">
|
|
<a ng-click="navClick('/')" ng-class="isCurrent('/')">Blog</a>
|
|
<a ng-click="navClick('/about')" ng-class="isCurrent('/about')">About</a>
|
|
<a ng-click="navClick('/faq')" ng-class="isCurrent('/faq')">FAQ</a>
|
|
</div>
|