link-formatter-vue-link-formatter.html.twig 478 B

1234567891011121314151617181920
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation 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. * @ingroup themeable
  15. */
  16. #}
  17. <a{{ attributes }}>
  18. {{ title }}
  19. </a>