mirror of
https://github.com/pebble-dev/clay.git
synced 2026-08-28 21:06:58 -04:00
21 lines
549 B
Smarty
Executable File
21 lines
549 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}}"
|
|
{{each key: attributes}}{{key}}="{{this}}"{{/each}}
|
|
/>
|
|
<i></i>
|
|
</label>
|
|
{{/each}}
|
|
</div>
|
|
{{if description}}
|
|
<div class="description">{{{description}}}</div>
|
|
{{/if}}
|
|
</div>
|