Skip to content

Instantly share code, notes, and snippets.

View jmezach's full-sized avatar

Jonathan Mezach jmezach

View GitHub Profile
@jmezach
jmezach / app.html
Last active August 30, 2018 07:05 — forked from jdanyow/app.html
Aurelia Gist
<template>
<router-view></router-view>
</template>
@jmezach
jmezach / app.html
Created February 21, 2017 15:14 — forked from lebolo/app.html
Aurelia Gist
<template>
<require from="./dropdown"></require>
<h1>${message}</h1>
<dropdown>
<p repeat.for="item of items">${item}</p>
</dropdown>
<a click.delegate="changeItems()" href="#">Change items</a>
</template>