| 1 | 1 |
new file mode 100755 |
| ... | ... |
@@ -0,0 +1,20 @@ |
| 1 |
+<div class="component component-radio"> |
|
| 2 |
+ <span class="label">{{{label}}}</span>
|
|
| 3 |
+ <div class="radio-group"> |
|
| 4 |
+ {{each options}}
|
|
| 5 |
+ <label class="tap-highlight"> |
|
| 6 |
+ <span class="label">{{{this.label}}}</span>
|
|
| 7 |
+ <input |
|
| 8 |
+ type="radio" |
|
| 9 |
+ value="{{this.value}}"
|
|
| 10 |
+ name="clay-{{clayId}}"
|
|
| 11 |
+ {{each key: attributes}}{{key}}="{{this}}"{{/each}}
|
|
| 12 |
+ /> |
|
| 13 |
+ <i></i> |
|
| 14 |
+ </label> |
|
| 15 |
+ {{/each}}
|
|
| 16 |
+ </div> |
|
| 17 |
+ {{if description}}
|
|
| 18 |
+ <div class="description">{{{description}}}</div>
|
|
| 19 |
+ {{/if}}
|
|
| 20 |
+</div> |