Basic build process and transforming json into html

This commit is contained in:
Keegan
2015-10-11 00:15:18 -07:00
parent 8b489173df
commit 227bb49786
54 changed files with 3136 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
<label class="item">
<span class="label">{{label}}</span>
<input data-manipulator-target type="text" class="item-color item-color-normal" value="{{value}}">
</label>
+3
View File
@@ -0,0 +1,3 @@
<div data-manipulator-target class="item-container-footer">
{{&content}}
</div>
@@ -0,0 +1,3 @@
<div class="item-container-header">
<h1 data-manipulator-target>{{&content}}</h1>
</div>
+11
View File
@@ -0,0 +1,11 @@
<label class="item">
<span class="label">{{label}}</span>
<div class="item-input-wrapper">
<input data-manipulator-target
class="item-input"
value="{{value}}"
type="text"
{{#attributes}} {{key}}="{{value}}" {{/attributes}}
/>
</div>
</label>
+8
View File
@@ -0,0 +1,8 @@
<label class="item">
<span class="label">{{label}}</span>
<select data-manipulator-target class="item-select">
{{#options}}
<option value="{{value}}" {{selected}} class="item-select-option">{{&label}}</option>
{{/options}}
</select>
</label>
@@ -0,0 +1,3 @@
<div class="item-container-header">
<h2 data-manipulator-target>{{&content}}</h2>
</div>
+3
View File
@@ -0,0 +1,3 @@
<div class="button-container">
<input data-manipulator-target type="submit" class="item-button" value="{{label}}">
</div>
+4
View File
@@ -0,0 +1,4 @@
<label class="item">
<span class="label">{{label}}</span>
<input data-manipulator-target type="checkbox" class="item-toggle" {{value}}>
</label>