diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-05-26 17:26:27 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-05-26 17:26:27 -0300 |
commit | 772c57182dcd6fb1d223369f1531ef48813cdac0 (patch) | |
tree | 7727e64c94b8669596d3f0e464ad33322fc31866 /guides/code/getting_started/app/views/posts/show.html.erb | |
parent | 49f03a77ed3ed286daeb440603ac799037b66c33 (diff) | |
parent | 45072f34d27bda34b182f14f8b02d778d1648cce (diff) | |
download | rails-772c57182dcd6fb1d223369f1531ef48813cdac0.tar.gz rails-772c57182dcd6fb1d223369f1531ef48813cdac0.tar.bz2 rails-772c57182dcd6fb1d223369f1531ef48813cdac0.zip |
Merge pull request #15323 from JohnKellyFerguson/getting-started-app
Docs: Rename Posts to Articles in Guides' Getting Started App
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.erb | 18 |
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 %> |