amp-8.x-3.5/templates/amp-social-share.html.twig
templates/amp-social-share.html.twig
{#
/**
* @file
* Template for an amp-social-share block.
*
* Available variables:
* - providers: The providers to share with.
* - app_id: Facebook app id.
*
* @see template_preprocess_amp_social_share()
*/
#}
{% for provider in providers %}
<amp-social-share type="{{ provider }}"
{% if provider == 'facebook' %}
data-param-app_id="{{ app_id }}"
{% endif %}
></amp-social-share>
{% endfor %}
