{# /** * @file * Default theme implementation to display a Smart Trimmed field. * * Available variables: * - output: The trimmed text to output. * - wrap_output: If true, output will be wrapped in a
. * Note: wrap_output is deprecated and will be removed in a future release. * Please override this template in your theme and apply any wrapping if * required. * - wrapper_class: Class name for wrapper. * - more: Render array for "More" link. * - more_wrapper_class: Class name for more link wrapper. * - field: The name of he field being rendered. * - entity_type: The type of entity being rendered. */ #} {% if wrap_output == true %}
{{ output }}
{% else %} {{ output }} {% endif %} {% if more != null %}
{{ render_var(more) }}
{% endif %}