Basic Share
Share is a list of social media links. Each link will enable the user to share a URL to a particular social media platform.
Demo
Twig
{% include '@bolt-components-share/share.twig' with {
sources: [
{
name: 'facebook',
attributes: {
href: 'https://www.facebook.com/sharer/sharer.php?u=https://boltdesignsystem.com&src=sdkpreparse'
}
},
{
name: 'twitter',
attributes: {
href: 'https://twitter.com/intent/tweet?url=https://boltdesignsystem.com&text=Sample%20Share%20Text&via=pega&hashtags=boltDesignSystemRocks!'
}
},
{
name: 'linkedin',
attributes: {
href: 'https://www.linkedin.com/shareArticle?url=https://boltdesignsystem.com'
}
},
{
name: 'email',
attributes: {
href: 'mailto:?&body=Sample%20Text%20--%20https%3A//boltdesignsystem.com'
}
}
],
copy_to_clipboard: {
text_to_copy: 'https://boltdesignsystem.com'
},
} only %}
HTML
Not available in plain HTML. Please use Twig.