Skip to content

Instantly share code, notes, and snippets.

@rankobp
rankobp / useHexo.md
Created June 18, 2017 18:56 — forked from btfak/useHexo.md
How to use Hexo and deploy to GitHub Pages
@rankobp
rankobp / app.html
Created November 15, 2016 21:07 — forked from Vheissu/app.html
Example of select binding for the book -- Aurelia For Real World Web Applications available here: https://leanpub.com/aurelia-for-real-world-applications/
<template>
<form role="form">
<select value.bind="selectedVal">
<option repeat.for="option of someOptions" value.bind="option">${option}</option>
</select>
<br><br>
<strong>Selected value: </strong>${selectedVal}
</form>
</template>