Skip to content

Commit 756f225

Browse files
author
Bulfair, Matt
committed
various bug fixes
1 parent 106710b commit 756f225

File tree

14 files changed

+152
-17
lines changed

14 files changed

+152
-17
lines changed

NOTICE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Pattern Lab Node - Webpack Edition
22

33
Copyright 2017 Comcast Cable Communications Management, LLC
4+
Inspired By: https://github.com/pattern-lab/edition-node-gulp
45

56
Licensed under the Apache License, Version 2.0 (the "License");
67
you may not use this file except in compliance with the License.

public/readme.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

source/_app/readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# _app
2+
3+
Used to store your app specific files.

source/_data/.gitkeep

Whitespace-only changes.

source/_data/data.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"key": "value",
3+
"key2": "use this for variables you want to load globally",
4+
"title": "Nullizzle shizznit velizzle, hizzle, suscipit own yo', gravida vizzle, arcu.",
5+
"img": {
6+
"avatar": {
7+
"src": "http://placeimg.com/100/100/people",
8+
"alt": "Avatar"
9+
},
10+
"square": {
11+
"src": "http://placeimg.com/300/300/nature",
12+
"alt": "Square"
13+
},
14+
"rectangle": {
15+
"src": "http://placeimg.com/400/300/tech",
16+
"alt": "Rectangle"
17+
},
18+
"landscape-4x3": {
19+
"src": "http://placeimg.com/400/300/tech",
20+
"alt": "4x3 Image"
21+
},
22+
"landscape-16x9": {
23+
"src": "http://placeimg.com/640/360/tech",
24+
"alt": "16x9 Image"
25+
}
26+
},
27+
"headline": {
28+
"short": "Lorizzle pimpin' dolizzle sit amet I",
29+
"medium": "Rizzle adipiscing elizzle. Nullam sapien velizzle, shit volutpizzle, my"
30+
},
31+
"excerpt": {
32+
"short": "Shizz fo shizzle mah nizzle fo rizzle, mah home g-dizzle, gravida vizzle, arcu. Pellentesque crunk tortizzle. Sed erizzle. Black izzle sheezy telliv.",
33+
"medium": "Izzle crazy tempizzle sizzle. We gonna chung gangsta get down get down fo shizzle turpizzle. Away break it down black. Pellentesque bling bling rhoncus fo shizzle. In hac the bizzle platea dictumst. Black dapibizzle. Crackalackin.",
34+
"long": "Curabitizzle fo shizzle diam quizzle nisi nizzle mollizzle. Suspendisse boofron. Morbi odio. Sure pizzle. Crazy orci. Shut the shizzle up maurizzle get down get down, check out this a, go to hizzle sit amizzle, malesuada izzle, pede. Pellentesque gravida. Vestibulizzle check it out mi, volutpat izzle, shiz sed, shiznit sempizzle, da bomb. Funky fresh in ipsum. Da bomb volutpat felis vizzle daahng dawg. Crizzle quis dope izzle fo shizzle my ni."
35+
},
36+
"description": "Fizzle crazy tortor. Sed rizzle. Ass pimpin' dolor dapibizzle turpis tempizzle fo shizzle my nizzle. Maurizzle pellentesque its fo rizzle izzle turpis. Get down get down we gonna chung nizzle. Shizzlin dizzle eleifend rhoncizzle break it down. In yo ghetto platea dictumst. Bling bling dapibizzle. Curabitur break yo neck, yall fo, pretizzle eu, go to hizzle dope, own yo' vitae, nunc. Bizzle suscipizzle. Ass semper velit sizzle fo.",
37+
"url": "http://lorizzle.nl/",
38+
"name": {
39+
"first": "Junius",
40+
"firsti": "J",
41+
"middle": "Marius",
42+
"middlei": "M",
43+
"last": "Koolen",
44+
"lasti": "K"
45+
},
46+
"year": {
47+
"long": "2013",
48+
"short": "13"
49+
},
50+
"month": {
51+
"long": "January",
52+
"short": "Jan",
53+
"digit": "01"
54+
},
55+
"dayofweek": {
56+
"long": "Sunday",
57+
"short": "Sun"
58+
},
59+
"day": {
60+
"long": "01",
61+
"short": "1",
62+
"ordinal": "st"
63+
},
64+
"hour": {
65+
"long": "06",
66+
"short": "6",
67+
"military": "06",
68+
"ampm": "am"
69+
},
70+
"minute": {
71+
"long": "20",
72+
"short": "20"
73+
},
74+
"seconds": "31"
75+
}

source/_data/listitems.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"1": {
3-
"title": "PatternLab",
3+
"title": "Nullizzle shizznit velizzle, hizzle, suscipit own yo', gravida vizzle, arcu.",
44
"img": {
55
"avatar": {
66
"src": "http://placeimg.com/100/100/people",

source/_meta/.gitkeep

Whitespace-only changes.

source/_meta/_00-head.mustache

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<title>{{ title }}</title>
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width" />
7-
7+
8+
<link rel="stylesheet" href="../../css/pattern-scaffolding.css?{{ cacheBuster }}" media="all" />
9+
810
<!-- Begin Pattern Lab (Required for Pattern Lab to run properly) -->
911
{{{ patternLabHead }}}
1012
<!-- End Pattern Lab -->
11-
13+
1214
</head>
1315
<body class="{{ bodyClass }}">
14-
<section class="page">
16+

source/_meta/_01-foot.mustache

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
</section>
21
<!--DO NOT REMOVE-->
3-
{{{ patternLabFoot }}}
2+
{{{ patternLabFoot }}}
43

5-
<script src="../../js/pl-vendor-libraries.js?{{cacheBuster}}"></script>
6-
<script src="../../js/pl-source.js?{{cacheBuster}}"></script>
4+
<script src="../../js/pl-vendor-libraries.js?{{cacheBuster}}"></script>
5+
<script src="../../js/pl-source.js?{{cacheBuster}}"></script>
76

8-
</body>
7+
</body>
98
</html>

source/css/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)