aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/views/posts/show.html.erb
diff options
context:
space:
mode:
authorJohn Kelly Ferguson <hello@johnkellyferguson.com>2014-05-25 18:48:14 -0400
committerJohn Kelly Ferguson <hello@johnkellyferguson.com>2014-05-25 18:48:14 -0400
commit45072f34d27bda34b182f14f8b02d778d1648cce (patch)
tree66a21875edf8908997ba28f63a8d32f8cedd2a0b /guides/code/getting_started/app/views/posts/show.html.erb
parent6c30717f8c182dc05f63779b3a9a532fb9076b05 (diff)
downloadrails-45072f34d27bda34b182f14f8b02d778d1648cce.tar.gz
rails-45072f34d27bda34b182f14f8b02d778d1648cce.tar.bz2
rails-45072f34d27bda34b182f14f8b02d778d1648cce.zip
Rename Posts to Articles in Guides' Getting Started App, continuation of #15215 [ci skip]
Diffstat (limited to 'guides/code/getting_started/app/views/posts/show.html.erb')
-rw-r--r--guides/code/getting_started/app/views/posts/show.html.erb18
1 files changed, 0 insertions, 18 deletions
diff --git a/guides/code/getting_started/app/views/posts/show.html.erb b/guides/code/getting_started/app/views/posts/show.html.erb
deleted file mode 100644
index e99e9edbb3..0000000000
--- a/guides/code/getting_started/app/views/posts/show.html.erb
+++ /dev/null
@@ -1,18 +0,0 @@
-<p>
- <strong>Title:</strong>
- <%= @post.title %>
-</p>
-
-<p>
- <strong>Text:</strong>
- <%= @post.text %>
-</p>
-
-<h2>Comments</h2>
-<%= render @post.comments %>
-
-<h2>Add a comment:</h2>
-<%= render "comments/form" %>
-
-<%= link_to 'Edit Post', edit_post_path(@post) %> |
-<%= link_to 'Back to Posts', posts_path %>