<% if @city.latest_weather_art&.image&.attached? %> <%= image_tag @city.latest_weather_art.image, class: "w-full h-full object-cover" %>
<% end %>
<%= link_to cities_path, class: "btn btn-ghost btn-circle" do %> <% end %>

<%= @city.name %>

Latitude
<%= @city.latitude %>
Longitude
<%= @city.longitude %>
Weather Arts
<%= @city.weather_arts.count %>

Weather Art History

<% @city.weather_arts.order(weather_date: :desc).each do |art| %>
<% if art.image.attached? %> <%= image_tag art.image, class: "w-full h-full object-cover transform hover:scale-105 transition-transform duration-500" %> <% end %>
<%= art.temperature %>°C
<%= art.weather_date.strftime("%B %d, %Y") %>

<%= art.description %>

Humidity: <%= art.humidity %>%
Wind: <%= art.wind_scale %>
<%= link_to "View Details", city_weather_art_path(@city, art), class: "btn btn-primary btn-outline" %>
<% end %>