Skip to content

Instantly share code, notes, and snippets.

@azaharafernandezguizan
Created October 27, 2018 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azaharafernandezguizan/76385f8dbf5c7434178a22ef34cde4b3 to your computer and use it in GitHub Desktop.
Save azaharafernandezguizan/76385f8dbf5c7434178a22ef34cde4b3 to your computer and use it in GitHub Desktop.
Aurelia navigation menu example
<template>
<require from="./styles.css"></require>
<div class="menu">
<ul repeat.for="nav of router.navigation">
<li class="${nav.isActive ? 'active menuButtons' : 'menuButtons'}"><a class="menuLink" href.bind="nav.href">${nav.title}</a></li>
</ul>
</div>
<div class="mainContent">
<router-view></router-view>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment