Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 69fecfe

Browse files
committed
Touched up mustache and made sure everything was dynamic
- Touched up mustache and made sure everything was dynamic - Still probably need to review some syntax
1 parent abc8457 commit 69fecfe

File tree

114 files changed

+489
-405
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+489
-405
lines changed

dist/_data/data.json

Lines changed: 91 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"heading" : "Page Header",
44
"subheading" : "Subtext For Header",
55
"text" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
6+
"placeholder" : "Placeholder Text",
67
"url" : "#",
78
"cta" : "Call To Action",
89
"ariaLabel" : "Aria label",
@@ -13,7 +14,13 @@
1314
"badge" : "23",
1415
"label" : "New Label",
1516
"labelClass" : "label-default",
16-
"progressLabelClass" : "sr-only",
17+
"progressBarClass" : "",
18+
"progressCompleteText" : "60% Complete",
19+
"progressMinWidth" : false,
20+
"removeProgressText" : true,
21+
"ariaMin" : 0,
22+
"ariaMax" : 100,
23+
"ariaNow" : 60,
1724
"src" : "../../images/bootstrapthumb.jpg",
1825
"alt" : "Bootstrap Thumbnail",
1926
"caption" : "Caption Text",
@@ -69,6 +76,7 @@
6976
}
7077
],
7178
"caret" : "caret",
79+
"dropdownClass" : "dropdown",
7280
"dropdownList" : [
7381
{
7482
"url" : "#",
@@ -154,5 +162,86 @@
154162
{ "text" : "Porta ac consectetur ac" },
155163
{ "text" : "Vestibulum at eros" }
156164
],
157-
"navbarClass" : "navbar-default"
165+
"navbarBrandText" : "Pattern Lab",
166+
"navbarNavClass" : "",
167+
"navbarNavFirst" : true,
168+
"navbarNavLast" : {
169+
"navbarNavClass" : "navbar-right"
170+
},
171+
"navbarNav" : [
172+
{
173+
"url" : "#",
174+
"text" : "Link"
175+
},
176+
{
177+
"url" : "#",
178+
"text" : "Link"
179+
},
180+
{
181+
"url" : "#",
182+
"text" : "Dropdown",
183+
"hasDropdown" : true,
184+
"dropdownMenu" : [
185+
{
186+
"url" : "#",
187+
"text" : "Action"
188+
},
189+
{
190+
"url" : "#",
191+
"text" : "Another action"
192+
},
193+
{
194+
"url" : "#",
195+
"text" : "Something else here"
196+
},
197+
{
198+
"separator" : "true"
199+
},
200+
{
201+
"url" : "#",
202+
"text" : "Link 4"
203+
}
204+
205+
]
206+
}
207+
],
208+
"navbarFormClass" : "navbar-left",
209+
"navbarClass" : "navbar-default",
210+
"mediaList" : [
211+
{
212+
"mediaLeft" : true,
213+
"mediaRight" : false,
214+
"nestedMedia" : [
215+
{
216+
"mediaLeft" : false,
217+
"mediaRight" : true
218+
},
219+
{
220+
"mediaLeft" : true,
221+
"mediaRight" : false
222+
}
223+
]
224+
225+
},
226+
{
227+
"heading" : "Item 2",
228+
"text" : "This is the second item that is not nested.",
229+
"mediaLeft" : true,
230+
"mediaRight" : false,
231+
"nestedMedia" : [
232+
{
233+
"heading" : "Nested Item 1",
234+
"text" : "This is the first nested item of the list.",
235+
"mediaLeft" : true,
236+
"mediaRight" : false
237+
},
238+
{
239+
"heading" : "Nested Item 2",
240+
"text" : "This is the second nested item of the list",
241+
"mediaLeft" : false,
242+
"mediaRight" : true
243+
}
244+
]
245+
}
246+
]
158247
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<input type="text" class="form-control" placeholder="{{ placeholder }}" aria-describedby="basic-addon1">
2+
3+
4+
5+

dist/_patterns/00-atoms/05-forms/00-input.mustache

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)