Skip to content

Instantly share code, notes, and snippets.

@abuiles
Created January 31, 2010 01:40
Show Gist options
  • Save abuiles/290831 to your computer and use it in GitHub Desktop.
Save abuiles/290831 to your computer and use it in GitHub Desktop.
<h1>Admin#index</h1>
<h2>Hola <%= @facebook_session.user.first_name %> </h2>
<table width="700" cellspacing="" cellpadding="" border="">
<% @facebook_session.user.friends.each_slice(3) do |friends| %>
<tr>
<% for friend in friends %>
<th>
<%= fb_profile_pic(friend,:size => :small)%> <br />
<p>Fun | Dating </p>
</th>
<% end %>
</tr>
<% end %>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment