{# TODO: - Show Humidity _ Show Indoor Temperature _ Show Indoor Humidity #} {% 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 current.nextSunAction() == "sunset" %} {{current.sunset | formatTime}} {% else %} {{current.sunrise | formatTime}} {% endif %}
{% endif %}
{{current.temperature | round(0 if config.roundTemp else 1)}}°{% if config.degreeLabel %} {% if config.units == "metric" %}C{% endif %} {% if config.units == "imperial" %}F{% endif %} {% if config.units == "default" %}K{% endif %} {% endif %}
{% endif %}