{weather.at.dt.weekday}

{weather.at.dt.pretty_date} location_on {weather.at.location}
{weather.current.condition.symbol}

{{if is_metric}}{weather.current.temp_c}°C{{else}}{weather.current.temp_f}°F{{endif}}

{weather.current.condition.description}

PRECIPITATION{{if is_metric}}{weather.current.precip_mm} mm{{else}}{weather.current.precip_in} in{{endif}}
HUMIDITY{weather.current.humidity} %
WIND{{if is_metric}}{weather.current.wind_kph} km/h{{else}}{weather.current.wind_mph} mph{{endif}}
    {{ for report in weather.forecast.at }}
  • {report.day.condition.symbol} {report.dt.weekday_short} {{if is_metric}}{report.day.avgtemp_c}°C{{else}}{report.day.avgtemp_f}°F{{endif}}
  • {{ endfor }}