public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
insoshi / app / views / home / _message.html.erb
100644 14 lines (14 sloc) 0.441 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="message_preview element clearfix">
  <div class="column first span-1">
    <%= image_link message.sender %>
  </div>
  <div class="column span-<%= SMALLER_COLUMN-1 %> last">
    <div class="from">
      From <%= person_link message.sender %>
      <%= time_ago_in_words message.created_at %> ago
    </div>
    <div class="subject">
      <%= link_to sanitize(truncate(message.subject, 30)), message %>
    </div>
  </div>
</div>