{#
/**
* @file
* Default theme implementation for displaying a tablesort indicator.
*
* Available variables:
* - style: Either 'asc' or 'desc', indicating the sorting direction.
*
* @ingroup themeable
*/
#}
{%
set classes = [
'tablesort',
'tablesort--' ~ style,
]
%}
{% if style == 'asc' -%}
{{ 'Sort ascending'|t }}
{% else -%}
{{ 'Sort descending'|t }}
{% endif %}