Guest User

Untitled

a guest
Jun 21st, 2018
931
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Current Temperature is: <%= @weather.current_conditions.temperature %><br /> <br />
  2. <%= image_tag("weather_32/"+ @weather.current_conditions.icon_code.to_s+".png") %><br />
  3. Current Conditions: <%= @weather.current_conditions.description %>
  4. <br />
  5.  
  6. <% @weather.forecast.each do |current| %>
  7. <b><%= current.week_day %></b><br /><br />
  8. Today's High: <%= current.high %><br />
  9. Today's Low: <%= current.low %><br />
  10. Today's Humidity:<%= current.day.humidity %><br /><br />
  11. <% end %>
Add Comment
Please, Sign In to add comment