Browse code

fixed untracked files

louis.jonget authored on24/01/2023 10:30:34
Showing1 changed files
1 1
old mode 100755
2 2
new mode 100644
Louis authored on25/08/2018 23:51:28
Showing1 changed files
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>