mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
36 lines
678 B
HTML
36 lines
678 B
HTML
<head>
|
|
<title>controls</title>
|
|
</head>
|
|
|
|
<body>
|
|
{{> radios}}
|
|
{{> checkboxes}}
|
|
{{> spew}}
|
|
</body>
|
|
|
|
<template name="radios">
|
|
<div>
|
|
Band:
|
|
<input type="radio" name="bands" value="AM" {{band_checked "AM"}}/>
|
|
<input type="radio" name="bands" value="FM" {{band_checked "FM"}}/>
|
|
<input type="radio" name="bands" value="XM" {{band_checked "XM"}}/>
|
|
{{current_band}}
|
|
</div>
|
|
</template>
|
|
|
|
<template name="checkboxes">
|
|
<div>
|
|
Daylight Savings Time:
|
|
<input type="checkbox" name="dst" value="yes" {{dst_checked}}/>
|
|
{{dst}}
|
|
</div>
|
|
</template>
|
|
|
|
<template name="spew">
|
|
<div>
|
|
{{#each lines}}
|
|
<br>{{this}}
|
|
{{/each}}
|
|
</div>
|
|
</template>
|