Is it possible to display a specific div based on the route being viewed? I have a universal header and footer, but I want to hide something in the header when on the / route.
<body>
<header>
<section ng-if=""></section>
</header>
<div ng-view class="view">
<footer></footer>
</body>