Skip to content

Instantly share code, notes, and snippets.

@amacgregor
Created July 3, 2011 02:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amacgregor/1061906 to your computer and use it in GitHub Desktop.
Save amacgregor/1061906 to your computer and use it in GitHub Desktop.
twitter.erb
<% if @search_result %>
<% @search_result.each do |r| %>
<div class="tweet">
<img alt="image" src="<%= r.profile_image_url %>" />
<p><%= r.text %></p><p><abbr class="timeago" title="<%= Time.parse('#{r.created_at}').iso8601 %>"><%= r.created_at %></abbr>&nbsp;<span class="author"><%= r.from_user %></span></p>
</div>
<% end %>
<% else %>
<p>No search result found.</p>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment