{% if current %} {% if not config.onlyTemp %}
{{ current.windSpeed | unit("wind") | round }} {% if config.showWindDirection %} {% if config.showWindDirectionAsArrow %} {% else %} {{ current.cardinalWindDirection() | translate }} {% endif %}   {% endif %} {% if config.showHumidity and current.humidity %} {{ current.humidity | decimalSymbol }}  {% endif %} {% if config.showSun %} {% if current.nextSunAction() === "sunset" %} {{ current.sunset | formatTime }} {% else %} {{ current.sunrise | formatTime }} {% endif %} {% endif %} {% if config.showUVIndex %}
{{ current.uv_index }} {% endif %}
{% endif %}
{{ current.temperature | roundValue | unit("temperature") | decimalSymbol }}
{% if config.showIndoorTemperature and indoor.temperature %}
{{ indoor.temperature | roundValue | unit("temperature") | decimalSymbol }}
{% endif %} {% if config.showIndoorHumidity and indoor.humidity %}
{{ indoor.humidity | roundValue | unit("humidity") | decimalSymbol }}
{% endif %}
{% if (config.showFeelsLike or config.showPrecipitationAmount or config.showPrecipitationProbability) and not config.onlyTemp %}
{% if config.showFeelsLike %} {{ "FEELS" | translate({DEGREE: current.feelsLike() | roundValue | unit("temperature") | decimalSymbol }) }}
{% endif %} {% if config.showPrecipitationAmount and current.precipitationAmount %} {{ "PRECIP_AMOUNT" | translate }} {{ current.precipitationAmount | unit("precip", current.precipitationUnits) }}
{% endif %} {% if config.showPrecipitationProbability and current.precipitationProbability %} {{ "PRECIP_POP" | translate }} {{ current.precipitationProbability }}% {% endif %}
{% endif %} {% else %}
{{ "LOADING" | translate }}
{% endif %}