aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/views/posts/show.html.erb
blob: a79fadfe4c8c42fb22bbb8bea5244adf5307131a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<p>
  <strong>Title:</strong>
  <%= @post.title %>
</p>

<p>
  <strong>Text:</strong>
  <%= @post.text %>
</p>

<%= link_to 'Back', :action => :index %>