Created
November 11, 2011 03:53
-
-
Save ngarneau/1357142 to your computer and use it in GitHub Desktop.
Ruby - Looping through multidim. hash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- @objects.each do |item| | |
.feed-item.left.relative | |
.feed-image.left | |
- if item['pictures'].empty? == false | |
- item['pictures'].each do |pics| | |
- if pics['main'] == true | |
%img{:src => "#{pics['filename']}-small.png"} | |
- else | |
%img{:src => "default-small.png"} | |
.feed-spec.left | |
%h3 | |
%a{:href => "/profile/#{item['uid']}"}= item['user']['username'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment