Browse code

new build from home

Louis Jonget authored on18/03/2023 14:55:56
Showing1 changed files
... ...
@@ -1,20 +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>
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>
Browse code

init commit

louis.jonget authored on30/09/2022 18:58:18
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -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>