webdev-assignment-2/views/navbuttons.html
Thomas Wade 0b077ec440 I don't even know anymore
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
2018-10-18 18:59:34 +10:30

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>