Files
baclight/app/views/articles/_article.html.erb
T
2021-12-16 14:33:08 -08:00

24 lines
409 B
Plaintext

<div id="<%= dom_id article %>" class="scaffold_record">
<p>
<strong>Title:</strong>
<%= article.title %>
</p>
<p>
Posted <%= time_tag article.created_at %>
</p>
<p>
<strong><%= pluralize article.comments.count, "comment" %></strong>
</p>
<p>
<strong>Content:</strong>
<%= article.content %>
</p>
<p>
<%= link_to "Show this article", article %>
</p>
</div>