link-formatter-link-separate.html.twig in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
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.
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.twigView 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 %}