{% if current %} {% if not config.onlyTemp %}
{% if config.useBeaufort %} {{current.beaufortWindSpeed() | round}} {% else %} {{current.windSpeed | round}} {% endif %} {% if config.showWindDirection %} {% if config.showWindDirectionAsArrow %} {% else %} {{current.cardinalWindDirection() | translate}} {% endif %}   {% endif %} {% if config.showHumidity and current.humidity %} {{ current.humidity }}  {% endif %} {% if current.nextSunAction() == "sunset" %} {{current.sunset | formatTime}} {% else %} {{current.sunrise | formatTime}} {% endif %}
{% endif %}
{{current.temperature | roundValue | unit("temperature")}} {% if config.showIndoorTemperature and indoor.temperature %} {{indoor.temperature | roundValue | unit("temperature")}} {% endif %} {% if config.showIndoorHumidity and indoor.humidity %} {{indoor.humidity | roundValue}}% {% endif %}
{% if config.showFeelsLike and not config.onlyTemp %}
{{ "FEELS" | translate }} {{ current.feelsLike() | roundValue | unit("temperature") }}
{% endif %} {% else %}
{{"LOADING" | translate}}
{% endif %}