{# TODO: - 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 config.showHumidity and current.humidity %} {{ current.humidity }}  {% endif %} {% if current.nextSunAction() == "sunset" %} {{current.sunset | formatTime}} {% else %} {{current.sunrise | formatTime}} {% endif %}
{% endif %}
{{current.temperature | round(0 if config.roundTemp else 1) | unit("temperature")}}
{% endif %}