12345678910111213141516171819 |
- {#
- /**
- * @file
- * Default theme implementation for the token tree link.
- *
- * Available variables:
- * - url: The URL to the token tree page.
- * - text: The text to be displayed in the link.
- * - attributes: Attributes for the anchor tag.
- * - link: The complete link.
- *
- * @see template_preprocess_token_tree_link()
- *
- * @ingroup themeable
- */
- #}
- {% if link -%}
- {{ link }}
- {%- endif %}
|