Files
drupal-mathallo/web_main/themes/custom/mathallo/templates/link-formatter-link-separate.html.twig
2026-07-07 12:02:08 +02:00

21 lines
511 B
Twig

{#
/**
* @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
*/
#}
{% apply spaceless %}
<label>{{ title }}</label>
{{ link }}
{% endapply %}