mirror of
https://github.com/pebble-dev/clay.git
synced 2026-08-31 22:36:56 -04:00
19 lines
499 B
Smarty
Executable File
19 lines
499 B
Smarty
Executable File
<div class="component component-checkbox">
|
|
<span class="label">{{{label}}}</span>
|
|
<div class="checkbox-group">
|
|
{{each options}}
|
|
<label class="tap-highlight">
|
|
<span class="label">{{{this.label}}}</span>
|
|
<input
|
|
type="checkbox"
|
|
value="{{this.value}}"
|
|
name="clay-{{clayId}}"
|
|
data-manipulator-target
|
|
{{each key: attributes}}{{key}}="{{this}}"{{/each}}
|
|
/>
|
|
<i></i>
|
|
</label>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|