You are here

link-formatter-link-separate.html.twig in Zircon Profile 8.0

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.

File

core/themes/classy/templates/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. {% spaceless %}
  16. <div class="link-item">
  17. {% if title %}
  18. <div class="link-title">{{ title }}</div>
  19. {% endif %}
  20. <div class="link-url">{{ link }}</div>
  21. </div>
  22. {% endspaceless %}