{# TODO: - Show Humidity - Show Units _ 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()}} {% endif %}   {% endif %} {% if current.nextSunAction() == "sunset" %} {{current.sunset | formatTime}} {% else %} {{current.sunrise | formatTime}} {% endif %}
{% endif %}
{{current.temperature | round(0 if config.roundTemp else 1)}}°
{% endif %}