mirror of
https://github.com/pebble-dev/clay.git
synced 2026-08-30 13:56:58 -04:00
16 lines
430 B
Smarty
Executable File
16 lines
430 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}}}</span>
|
|
<input type="checkbox" value="1" name="clay-{{clayId}}" />
|
|
<i></i>
|
|
</label>
|
|
{{/each}}
|
|
</div>
|
|
{{if description}}
|
|
<div class="description">{{{description}}}</div>
|
|
{{/if}}
|
|
</div>
|