Repository URL to install this package:
|
Version:
2.0.3 ▾
|
{#
/**
* @file
* Default theme implementation of a link with target
*
* 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.
* - target_value: Boolean indicating whether or not link should open in new window
*
* @see template_preprocess()
*
* @ingroup themeable
*/
#}
<a href="{{ url }}" {% if target_blank %} target="_blank" {% endif %} class="button button--{{ button_style }}">{{ title }}</a>