{# High/Low snippet #} {% if showdata.highlow is not empty %} <{{tag}} class="wu-cond-highlow"> {% if summary.high|length > 0 and summary.low|length > 0 %} {{ strings.high|format(summary.high)|raw }} / {{ strings.low|format(summary.low)|raw }} {# The current forecast has no high/low; only current temperature #} {% elseif forecast.temperature is not empty %} {{ strings.current|format(forecast.temperature)|raw }} {% endif %} {% endif %}