-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EWPP-1864: Style the lists with illustrations paragraphs.
- Loading branch information
Showing
6 changed files
with
651 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
templates/paragraphs/paragraph--oe-illustration-list-flags.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{# | ||
/** | ||
* @file | ||
* Theme override to display the 'Illustration list with flags' type paragraph. | ||
* | ||
* @see ./modules/contrib/paragraphs/templates/paragraph.html.twig | ||
*/ | ||
#} | ||
{% if title is not empty %} | ||
<h2 class="ecl-u-type-heading-2"> | ||
{{ title }} | ||
</h2> | ||
{% endif %} | ||
|
||
{{ pattern('list_with_illustration', { | ||
'variant': variant, | ||
'column': column, | ||
'zebra': zebra, | ||
'items': items, | ||
}) }} |
20 changes: 20 additions & 0 deletions
20
templates/paragraphs/paragraph--oe-illustration-list-icons.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{# | ||
/** | ||
* @file | ||
* Theme override to display the 'Illustration list with icons' type paragraph. | ||
* | ||
* @see ./modules/contrib/paragraphs/templates/paragraph.html.twig | ||
*/ | ||
#} | ||
{% if title is not empty %} | ||
<h2 class="ecl-u-type-heading-2"> | ||
{{ title }} | ||
</h2> | ||
{% endif %} | ||
|
||
{{ pattern('list_with_illustration', { | ||
'variant': variant, | ||
'column': column, | ||
'zebra': zebra, | ||
'items': items, | ||
}) }} |
20 changes: 20 additions & 0 deletions
20
templates/paragraphs/paragraph--oe-illustration-list-images.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{# | ||
/** | ||
* @file | ||
* Theme override to display the 'Illustration list with images' type paragraph. | ||
* | ||
* @see ./modules/contrib/paragraphs/templates/paragraph.html.twig | ||
*/ | ||
#} | ||
{% if title is not empty %} | ||
<h2 class="ecl-u-type-heading-2"> | ||
{{ title }} | ||
</h2> | ||
{% endif %} | ||
|
||
{{ pattern('list_with_illustration', { | ||
'variant': variant, | ||
'column': column, | ||
'zebra': zebra, | ||
'items': items, | ||
}) }} |
Oops, something went wrong.