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

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

<%= link_to 'Back', :action => :index %>
| <%= link_to 'Edit', :action => :edit, :id => @post.id %>