Mercurial > hg > cmmr2012-drupal-site
view core/themes/classy/templates/field/link-formatter-link-separate.html.twig @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | c75dbcec494b |
children |
line wrap: on
line source
{# /** * @file * 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 template_preprocess() * @see template_preprocess_link_formatter_link_separate() */ #} {% spaceless %} <div class="link-item"> {% if title %} <div class="link-title">{{ title }}</div> {% endif %} <div class="link-url">{{ link }}</div> </div> {% endspaceless %}