Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

link-formatter-link-separate.html.twig

Same filename in this branch
  1. 11.1.x core/themes/stable9/templates/field/link-formatter-link-separate.html.twig
  2. 11.1.x core/themes/starterkit_theme/templates/field/link-formatter-link-separate.html.twig
  3. 11.1.x core/themes/claro/templates/classy/field/link-formatter-link-separate.html.twig
  4. 11.1.x core/modules/link/templates/link-formatter-link-separate.html.twig

Theme override 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()

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/profiles/demo_umami/themes/umami/templates/classy/field/link-formatter-link-separate.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override of a link with separate title and URL elements.
  5. *
  6. * Available variables:
  7. * - link: The link that has already been formatted by l().
  8. * - title: (optional) A descriptive or alternate title for the link, which may
  9. * be different than the actual link text.
  10. *
  11. * @see template_preprocess()
  12. * @see template_preprocess_link_formatter_link_separate()
  13. */
  14. #}
  15. <div class="link-item">
  16. {%- if title -%}
  17. <div class="link-title">{{- title -}}</div>
  18. {%- endif -%}
  19. <div class="link-url">{{- link -}}</div>
  20. </div>

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal