Created
November 18, 2016 04:29
-
-
Save mariohernandez/316883047fbf0983d3383b6b3a115f78 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{# set a variable for social media icons | |
to later pass to the component template #} | |
{% | |
set social = [ | |
{ | |
url: content.field_card_social_link.0['#url'].uri, | |
icon: content.field_card_social_link.0['#title'], | |
}, | |
{ | |
url: content.field_card_social_link.1['#url'].uri, | |
icon: content.field_card_social_link.1['#title'], | |
}, | |
{ | |
url: content.field_card_social_link.2['#url'].uri, | |
icon: content.field_card_social_link.2['#title'], | |
}, | |
] | |
%} | |
{# include card component template #} | |
{% | |
include '@demo/card/card.twig' with { | |
image: content.field_card_photo, | |
name: content.field_card_name, | |
bio: content.field_card_biography, | |
socialLinks: social, | |
} only | |
%} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment