Skip to content

Instantly share code, notes, and snippets.

View Einarsson's full-sized avatar

Emil Einarsson Einarsson

View GitHub Profile
@Einarsson
Einarsson / app.html
Last active June 7, 2017 11:31 — forked from jdanyow/app.html
Aurelia Gist
<template>
<h1>${message}</h1>
<table>
<thead>
<th>Column</th>
</thead>
<tbody>
<tr repeat.for="item of items">
<td>${item}</td>
@Einarsson
Einarsson / app.html
Last active April 19, 2017 06:17 — forked from jdanyow/app.html
Aurelia Validation Demo
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>