Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. <% @locations.each do |location| %>
  2. <div class="row location-row">
  3. <div class="col-md-2">
  4. <%= image_tag(location.home_thumb, size: '192x192') %>
  5. </div>
  6. <div class="col-md-1">
  7. </div>
  8. <div class="col-md-8">
  9. <h3><%= location.name << ', ' << location.country %> <small><%= (money_without_cents_and_with_symbol location.price_range_floor_cents).to_s << ' - '<< (money_without_cents_and_with_symbol location.price_range_ceiling_cents).to_s %> / day</small></h3>
  10. <div class="icon-row row">
  11. <h4 class="col-md-4">Why Should I go?</h4>
  12. <div class="col-md-2">
  13. <% location.climbing_types.each do |type| %>
  14. <%= image_tag(type.icon, :class => 'icon') %>
  15. <% end %>
  16. </div>
  17. <h4 class="col-md-4">Where am I going to sleep?</h4>
  18. <div class="col-md-2">
  19. <% location.accommodations.each do |accommodation| %>
  20. <%= image_tag(accommodation.icon, :class => 'icon') %>
  21. <% end %>
  22. </div>
  23. </div>
  24. <div class="icon-row row">
  25. <h4 class="col-md-4">When Should I go?</h4>
  26. <div class="col-md-2">
  27. <% location.seasons.each do |seasons| %>
  28. <%= image_tag(seasons.icon, :class => 'icon') %>
  29. <% end %>
  30. </div>
  31. <h4 class="col-md-4">How hard should I climb?</h4>
  32. <div class="col-md-2">
  33. <h4><%= location.grade.us %></h4>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement