Skip to content

Instantly share code, notes, and snippets.

@koenbeuk
koenbeuk / index.html
Last active March 24, 2020 03:56 — forked from bigopon/index.html
passing click to child in html only element
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dumber Gist</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<base href="/">
</head>
<!--
Dumber gist uses dumber bundler, the default bundle file
@koenbeuk
koenbeuk / app.html
Created July 18, 2019 04:09 — forked from jdanyow/app.html
Aurelia Gist
<template>
<h1>${message}</h1>
</template>
@koenbeuk
koenbeuk / app.html
Last active July 2, 2019 09:48 — forked from jdanyow/app.html
Aurelia Gist
<template>
<require from="style.css"></require>
<require from="custom-row.html"></require>
<table>
<tr as-element="custom-row"></tr>
</table>
</template>