You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: A callout component to highlight important information.
363
+
links:
364
+
- linkUrl: https://11tymeetup.dev/
365
+
linkText: Join the 11ty Meetup!
366
+
background: warning
367
+
368
+
- type: text-and-image
369
+
heading: About Our Community
370
+
description: Join thousands of developers building amazing things with Eleventy.
371
+
image: /assets/images/community.jpg
372
+
imageAlt: Community members collaborating
373
+
layout: image-right
374
+
---
375
+
376
+
{{ components |> renderComponent |> safe }}
377
+
```
378
+
379
+
</details>
380
+
381
+
98
382
> **Note:** The `renderComponent` filter accepts a template language parameter (`"njk"`, `"liquid"`, `"webc"`, `"vto"`, etc.) and can process both single components and arrays of components. The filter automatically merges component default values with your provided data - any missing fields will use the defaults from the component file.
99
383
100
384
## Configuration
@@ -161,6 +445,7 @@ components:
161
445
heading: Welcome!
162
446
description: Thanks for visiting our site
163
447
background: primary
448
+
164
449
- type: text-and-image
165
450
heading: About Us
166
451
description: Learn more about our company
@@ -188,6 +473,7 @@ components:
188
473
heading: Welcome!
189
474
description: Thanks for visiting our site
190
475
background: primary
476
+
191
477
- type: text-and-image
192
478
heading: About Us
193
479
description: Learn more about our company
@@ -215,6 +501,7 @@ components:
215
501
heading: Welcome!
216
502
description: Thanks for visiting our site
217
503
background: primary
504
+
218
505
- type: text-and-image
219
506
heading: About Us
220
507
description: Learn more about our company
@@ -538,6 +825,7 @@ Components should follow this structure:
538
825
```liquid
539
826
---
540
827
title: ComponentName
828
+
541
829
# Default values
542
830
heading: "default heading"
543
831
description: "default description"
@@ -578,6 +866,8 @@ If your component has these defaults:
0 commit comments