Skip to content

Commit 1c878df

Browse files
authored
fix(starterkit-twig-demo): pages not rendering pattern-specific data from json (#1490)
Closes: #1486
1 parent fd5db84 commit 1c878df

File tree

13 files changed

+282
-281
lines changed

13 files changed

+282
-281
lines changed

packages/development-edition-engine-twig/patternlab-config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"organisms": "source/_patterns/organisms/",
115115
"templates": "source/_patterns/templates/",
116116
"pages": "source/_patterns/pages/",
117-
"macros": "source/_macros/"
117+
"macros": "source/_patterns/macros/"
118118
}
119119
}
120120
}

packages/starterkit-twig-demo/dist/_data/data.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"first_name": "Author",
8787
"last_name": "Name"
8888
},
89-
"hero": true,
89+
"hero": {},
9090
"emergency" : false,
9191
"touts" : [
9292
{ },
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
hidden: true
3+
---

packages/starterkit-twig-demo/dist/_patterns/organisms/sections/latest-posts.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<h2 class="section-title">Latest Posts</h2>
33
<ul class="post-list">
44
{% for post in latest_posts %}
5-
<li>{% include "@molecules/blocks/media-block.twig" %}</li>
5+
<li>{% include "@molecules/blocks/media-block.twig" with post %}</li>
66
{% endfor %}
77
</ul>
88
<a href="#" class="text-btn">View more posts</a>
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"title" : "Top 10 Trails You Have To Hike Before You Die",
3-
"bodyClass": "article",
4-
"author" : {
5-
"first-name" : "Julianne",
6-
"last-name" : "McCormick"
7-
},
8-
"img": {
9-
"landscape_4x3": {
10-
"src": "../../images/sample/landscape-16x9-mountains.jpg",
11-
"alt": "Mountains",
12-
"width": "1151",
13-
"height": "638"
14-
},
15-
"landscape_16x9": {
16-
"src": "../../images/sample/landscape-16x9-mountains.jpg",
17-
"alt": "Mountains",
18-
"width": "1151",
19-
"height": "638"
20-
}
21-
},
22-
"inset_blocks" : [
23-
{
24-
"headline" : "This is the headline for the inset block"
25-
}
26-
],
27-
"latest_block" : [
28-
{
29-
"headline" : "This is the headline for the latest block"
30-
}
31-
]
2+
"title": "Top 10 Trails You Have To Hike Before You Die",
3+
"bodyClass": "article",
4+
"author": {
5+
"first_name": "Julianne",
6+
"last_name": "McCormick"
7+
},
8+
"img": {
9+
"landscape_4x3": {
10+
"src": "../../images/sample/landscape-16x9-mountains.jpg",
11+
"alt": "Mountains",
12+
"width": "1151",
13+
"height": "638"
14+
},
15+
"landscape_16x9": {
16+
"src": "../../images/sample/landscape-16x9-mountains.jpg",
17+
"alt": "Mountains",
18+
"width": "1151",
19+
"height": "638"
20+
}
21+
},
22+
"inset_blocks": [
23+
{
24+
"headline": "This is the headline for the inset block"
25+
}
26+
],
27+
"latest_block": [
28+
{
29+
"headline": "This is the headline for the latest block"
30+
}
31+
]
3232
}
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,86 @@
11
{
2-
"title" : "Blog",
3-
"bodyClass": "blog",
4-
"latest-posts" : [
5-
{
6-
"img": {
7-
"square": {
8-
"src": "../../images/sample/thumb-square-river.jpg",
9-
"alt": "Post Thumbnail"
10-
}
11-
},
12-
"headline" : {
13-
"short" : "Navigate the Allegheny River"
14-
},
15-
"excerpt" : {
16-
"medium" : "The Allegheny River is a principal tributary of the Ohio River; it is located in the Eastern United States. The Allegheny River joins with the Monongahela River to form the Ohio River at the Point of Point State Park in Downtown Pittsburgh, Pennsylvania."
17-
}
18-
},
19-
{
20-
"img": {
21-
"square": {
22-
"src": "../../images/sample/thumb-square-ivy.jpg",
23-
"alt": "Ivy"
24-
}
25-
},
26-
"headline" : {
27-
"short" : "How to detect and avoid poison ivy"
28-
},
29-
"excerpt" : {
30-
"medium" : "Toxicodendron radicans, commonly known as poison ivy is a poisonous North American plant that is well known for its production of urushiol"
31-
}
32-
},
33-
{
34-
"img": {
35-
"square": {
36-
"src": "../../images/sample/thumb-square-yosemite.jpg",
37-
"alt": "Yosemite"
38-
}
39-
},
40-
"headline" : {
41-
"short" : "Top 10 hiking mountains"
42-
},
43-
"excerpt" : {
44-
"medium" : "Yosemite National Park is a United States National Park spanning eastern portions of Tuolumne, Mariposa and Madera counties in the central eastern portion of the U.S. state of California."
45-
}
46-
},
47-
{
48-
"img": {
49-
"square": {
50-
"src": "../../images/sample/thumb-square-fire.jpg",
51-
"alt": "Fire"
52-
}
53-
},
54-
"headline" : {
55-
"short" : "How to build a campfire"
56-
},
57-
"excerpt" : {
58-
"medium" : "A campfire is a fire lit at a campsite, to serve the following functions: light, warmth, a beacon, an insect and/or apex predator deterrent, to cook, and for a psychological sense of security. "
59-
}
60-
},
61-
{
62-
"img": {
63-
"square": {
64-
"src": "../../images/sample/thumb-square-gear.jpg",
65-
"alt": "Camping Gear"
66-
}
67-
},
68-
"headline" : {
69-
"short" : "Pick the right camping gear"
70-
},
71-
"excerpt" : {
72-
"medium" : "The equipment used in camping varies with the particular type of camping. For instance, in survival camping the equipment consists of small items which have the purpose of helping the camper in providing food, heat and safety."
73-
}
74-
}
75-
],
76-
"inset_blocks" : [
77-
{
78-
"headline" : "This is the headline for the inset block"
79-
}
80-
],
81-
"latest_block" : [
82-
{
83-
"headline" : "This is the headline for the latest block"
84-
}
85-
]
86-
}
2+
"title": "Blog",
3+
"bodyClass": "blog",
4+
"latest_posts": [
5+
{
6+
"img": {
7+
"square": {
8+
"src": "../../images/sample/thumb-square-river.jpg",
9+
"alt": "Post Thumbnail"
10+
}
11+
},
12+
"headline": {
13+
"short": "Navigate the Allegheny River"
14+
},
15+
"excerpt": {
16+
"medium": "The Allegheny River is a principal tributary of the Ohio River; it is located in the Eastern United States. The Allegheny River joins with the Monongahela River to form the Ohio River at the Point of Point State Park in Downtown Pittsburgh, Pennsylvania."
17+
}
18+
},
19+
{
20+
"img": {
21+
"square": {
22+
"src": "../../images/sample/thumb-square-ivy.jpg",
23+
"alt": "Ivy"
24+
}
25+
},
26+
"headline": {
27+
"short": "How to detect and avoid poison ivy"
28+
},
29+
"excerpt": {
30+
"medium": "Toxicodendron radicans, commonly known as poison ivy is a poisonous North American plant that is well known for its production of urushiol"
31+
}
32+
},
33+
{
34+
"img": {
35+
"square": {
36+
"src": "../../images/sample/thumb-square-yosemite.jpg",
37+
"alt": "Yosemite"
38+
}
39+
},
40+
"headline": {
41+
"short": "Top 10 hiking mountains"
42+
},
43+
"excerpt": {
44+
"medium": "Yosemite National Park is a United States National Park spanning eastern portions of Tuolumne, Mariposa and Madera counties in the central eastern portion of the U.S. state of California."
45+
}
46+
},
47+
{
48+
"img": {
49+
"square": {
50+
"src": "../../images/sample/thumb-square-fire.jpg",
51+
"alt": "Fire"
52+
}
53+
},
54+
"headline": {
55+
"short": "How to build a campfire"
56+
},
57+
"excerpt": {
58+
"medium": "A campfire is a fire lit at a campsite, to serve the following functions: light, warmth, a beacon, an insect and/or apex predator deterrent, to cook, and for a psychological sense of security. "
59+
}
60+
},
61+
{
62+
"img": {
63+
"square": {
64+
"src": "../../images/sample/thumb-square-gear.jpg",
65+
"alt": "Camping Gear"
66+
}
67+
},
68+
"headline": {
69+
"short": "Pick the right camping gear"
70+
},
71+
"excerpt": {
72+
"medium": "The equipment used in camping varies with the particular type of camping. For instance, in survival camping the equipment consists of small items which have the purpose of helping the camper in providing food, heat and safety."
73+
}
74+
}
75+
],
76+
"inset_blocks": [
77+
{
78+
"headline": "This is the headline for the inset block"
79+
}
80+
],
81+
"latest_block": [
82+
{
83+
"headline": "This is the headline for the latest block"
84+
}
85+
]
86+
}

0 commit comments

Comments
 (0)