{{ include.variable.name }}
|
{% if include.variable.computed_type and include.variable.computed_type != include.variable.type %}
{{ include.variable.computed_type }}
{% else %}
{{ include.variable.type }}
{% endif %}
|
{% if include.variable.type == 'color' %}
{% include elements/color-square.html value=variable.value %}
{% else %}
{{ include.variable.value }}
{% endif %}
|
{% unless include.hide_computed %}
{% if include.variable.computed_value != '' %}
{% if include.variable.computed_type == 'color' %}
{% include elements/color-square.html value=variable.computed_value %}
{% elsif include.variable.computed_value and include.variable.computed_value != include.variable.value %}
{{ include.variable.computed_value }}
{% endif %}
{% endif %}
|
{% endunless %}