summaryrefslogtreecommitdiffstats
path: root/app/views/documents/_document.html.erb
blob: 9e0c57d78af72c77b2d465b7dc6fd58c392fc3c5 (plain)
1
2
3
4
5
6
7
8
<div class="document-item document-<%= document.id %>">
  <h4 class="title"><%= link_to document.title, document_path(document) %></h4>
  <div class="updated_on"><em><%= format_time(document.updated_on) %></em></div>

  <div class="wiki description">
    <%= textilizable(truncate_lines(document.description), :object => document) %>
  </div>
</div>