hello-learning/blog/app/views/articles/show.html.erb
2019-08-06 22:50:19 -05:00

18 lines
310 B
Text

<p>
<strong>Title</strong>
<%= @article.title %>
</p>
<p>
<strong>Text</strong>
<%= @article.text %>
</p>
<h2>Comments</h2>
<%= render @article.comments %>
<h2>Add a comment:</h2>
<%= render 'comments/form' %>
<%= link_to 'Edit', edit_article_path(@article) %>
<%= link_to 'Back', articles_path %>