link-formatter-link-separate.html.twig
Same filename in this branch
- 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/field/link-formatter-link-separate.html.twig
- 8.9.x core/themes/seven/templates/classy/field/link-formatter-link-separate.html.twig
- 8.9.x core/themes/claro/templates/classy/field/link-formatter-link-separate.html.twig
- 8.9.x core/themes/bartik/templates/classy/field/link-formatter-link-separate.html.twig
- 8.9.x core/themes/stable/templates/field/link-formatter-link-separate.html.twig
- 8.9.x core/themes/classy/templates/field/link-formatter-link-separate.html.twig
Same filename in other branches
- 9 core/profiles/demo_umami/themes/umami/templates/classy/field/link-formatter-link-separate.html.twig
- 9 core/themes/stable9/templates/field/link-formatter-link-separate.html.twig
- 9 core/themes/seven/templates/classy/field/link-formatter-link-separate.html.twig
- 9 core/themes/claro/templates/classy/field/link-formatter-link-separate.html.twig
- 9 core/themes/bartik/templates/classy/field/link-formatter-link-separate.html.twig
- 9 core/themes/stable/templates/field/link-formatter-link-separate.html.twig
- 9 core/themes/starterkit_theme/templates/field/link-formatter-link-separate.html.twig
- 9 core/themes/classy/templates/field/link-formatter-link-separate.html.twig
- 9 core/modules/link/tests/themes/link_test_theme/templates/link-formatter-link-separate.html.twig
- 9 core/modules/link/templates/link-formatter-link-separate.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/field/link-formatter-link-separate.html.twig
- 10 core/themes/stable9/templates/field/link-formatter-link-separate.html.twig
- 10 core/themes/claro/templates/classy/field/link-formatter-link-separate.html.twig
- 10 core/themes/starterkit_theme/templates/field/link-formatter-link-separate.html.twig
- 10 core/modules/link/tests/themes/link_test_theme/templates/link-formatter-link-separate.html.twig
- 10 core/modules/link/templates/link-formatter-link-separate.html.twig
- 11.x core/profiles/demo_umami/themes/umami/templates/classy/field/link-formatter-link-separate.html.twig
- 11.x core/themes/stable9/templates/field/link-formatter-link-separate.html.twig
- 11.x core/themes/claro/templates/classy/field/link-formatter-link-separate.html.twig
- 11.x core/themes/starterkit_theme/templates/field/link-formatter-link-separate.html.twig
- 11.x core/modules/link/tests/themes/link_test_theme/templates/link-formatter-link-separate.html.twig
- 11.x core/modules/link/templates/link-formatter-link-separate.html.twig
Default theme implementation of a link with separate title and URL elements.
Available variables:
- link: The link that has already been formatted by l().
- title: (optional) A descriptive or alternate title for the link, which may be different than the actual link text.
See also
template_preprocess_link_formatter_link_separate()
1 theme call to link-formatter-link-separate.html.twig
- LinkSeparateFormatter::viewElements in core/
modules/ link/ src/ Plugin/ Field/ FieldFormatter/ LinkSeparateFormatter.php - Builds a renderable array for a field value.
File
-
core/
modules/ link/ templates/ link-formatter-link-separate.html.twig
View source
- {#
- /**
- * @file
- * Default theme implementation of a link with separate title and URL elements.
- *
- * Available variables:
- * - link: The link that has already been formatted by l().
- * - title: (optional) A descriptive or alternate title for the link, which may
- * be different than the actual link text.
- *
- * @see template_preprocess()
- * @see template_preprocess_link_formatter_link_separate()
- *
- * @ingroup themeable
- */
- #}
- {% spaceless %}
- {{ title }}
- {{ link }}
- {% endspaceless %}
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.