Files
baclight/app/views/articles/_article.html.erb
T

16 lines
257 B
Plaintext
Raw Normal View History

2021-09-26 15:22:36 -07:00
<div id="<%= dom_id article %>" class="scaffold_record">
<p>
<strong>Title:</strong>
<%= article.title %>
</p>
<p>
<strong>Text:</strong>
<%= article.text %>
</p>
<p>
<%= link_to "Show this article", article %>
</p>
</div>