<% content_for :head do %> <% end %>
<%= link_to city_path(@weather_art.city), class: "btn btn-ghost btn-md gap-2 bg-base-200 hover:bg-base-300 transition-all duration-300" do %> Back to <%= @weather_art.city.name %> <% end %>
<% if @weather_art.image.attached? %>
<% end %>

<%= @weather_art.city.full_name %> Weather Art

<%= @weather_art.weather_date.strftime("%B %d, %Y") %>
<%= @weather_art.weather_date.strftime("%H:%M") %>

<%= weather_description_icon(@weather_art.description) %> <%= @weather_art.description %>

<%= render 'weather_stats', weather_art: @weather_art %>

AI Prompt

<%= @weather_art.prompt %>

<% if @previous_weather_art %> <%= link_to city_weather_art_path(@city, @previous_weather_art), class: "btn btn-outline btn-primary w-full sm:w-auto flex items-center justify-center gap-2" do %> Previous Weather Art <% end %> <% end %> <% if @next_weather_art %> <%= link_to city_weather_art_path(@city, @next_weather_art), class: "btn btn-outline btn-primary w-full sm:w-auto flex items-center justify-center gap-2" do %> Next Weather Art <% end %> <% end %>
<% if @previous_weather_art.nil? && @next_weather_art.nil? %>
No more Weather Arts available
<% end %>