Skip to content

Instantly share code, notes, and snippets.

View MaxRozyskul's full-sized avatar

MaxRozyskul

  • Kherson,Ukraine
View GitHub Profile
@MaxRozyskul
MaxRozyskul / app.html
Created March 18, 2018 15:50 — forked from lstarky/app.html
Aurelia modify sidebar from router view (with eventAggregator)
<template>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li><a href="#/home">Home</a></li>
<li><a href="#/square">Square</a></li>
<li><a href="#/circle">Circle</a></li>
</ul>
</div>
</nav>
@MaxRozyskul
MaxRozyskul / app.html
Created March 13, 2018 20:55 — forked from davismj/app.html
Aurelia Menu Sample
<template>
<div>
<button repeat.for="route of router.navigation" click.delegate="router.navigateToRoute(route.config.name)">${route.title} ${route.isActive}</button>
</div>
<h1>Aurelia Menu with Child Routes example</h1>
<div>
<router-view></router-view>
</div>
</template>