Skip to content

Instantly share code, notes, and snippets.

View RichTeaTime's full-sized avatar

Rich RichTeaTime

View GitHub Profile
@RichTeaTime
RichTeaTime / app.html
Last active October 31, 2018 15:08 — forked from Krussicus/app.html
Aurelia Gist
<template>
<nav class="navbar">
<a repeat.for="nav of router.navigation" href.bind="nav.href" class="nav-link ${nav.isActive ? 'active' : ''}">
${nav.title}
</a>
</nav>
<router-view></router-view>
</template>
@RichTeaTime
RichTeaTime / app.html
Created October 31, 2018 14:52 — forked from Krussicus/app.html
Aurelia Gist
<template>
<nav class="navbar">
<a repeat.for="nav of router.navigation" href.bind="nav.href" class="nav-link ${nav.isActive ? 'active' : ''}">
${nav.title}
</a>
</nav>
<router-view></router-view>
</template>
@RichTeaTime
RichTeaTime / app.html
Created February 13, 2017 16:23 — forked from joelclimbsthings/app.html
Aurelia Test
<template>
<div class="page-host">
<div repeat.for="obj of data">${obj.id} = ${obj.val}</div>
</div>
<div click.delegate="update()">UPDATE</div>
</template>
@RichTeaTime
RichTeaTime / app.html
Created February 13, 2017 16:23 — forked from joelclimbsthings/app.html
Aurelia Test
<template>
<div class="page-host">
<div repeat.for="obj of data">${obj.id} = ${obj.val}</div>
</div>
<div click.delegate="update()">UPDATE</div>
</template>
@RichTeaTime
RichTeaTime / app.html
Created October 20, 2016 11:45 — forked from plwalters/app.html
Aurelia If Bind test on <content>
<template>
<require from="./parent"></require>
<parent></parent>
</template>