kinetic-2.0.x-dev/templates/paragraph/link-default/paragraph--link-default.html.twig
templates/paragraph/link-default/paragraph--link-default.html.twig
{% block content %}
{% set link_options = content.field_link[0]['#url'].options %}
{% set target = link_options['attributes']['target'] ?: null %}
{% set external = link_options['external'] %}
{# Set link attributes. #}
{% set link_attributes = {
class: paragraph.field_style.value ?: 'btn-secondary',
target: target,
} %}
{# Add aria-label to links that open in a new tab. #}
{% if target == '_blank' or external %}
{% set link_attributes = link_attributes|merge({ 'aria-label': 'Opens in new tab' }) %}
{% endif %}
{{ link(content.field_link.0['#title'], content.field_link.0['#url'], link_attributes) }}
{% endblock %}