From 2214237c3950445208635a332d520d6aa530c1de Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Tue, 22 Jan 2013 00:12:29 -0500 Subject: Re-do Getting Started application with Rails 4. The sample application with the Getting Started Guide was very out of date. I've re-done it on edge (as of 51b9def5bf108fb566e) so it should be good to go with Rails 4. It's also in synch with what the guide actually says. --- guides/code/getting_started/app/views/posts/show.html.erb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'guides/code/getting_started/app/views/posts/show.html.erb') diff --git a/guides/code/getting_started/app/views/posts/show.html.erb b/guides/code/getting_started/app/views/posts/show.html.erb index 65809033ed..e99e9edbb3 100644 --- a/guides/code/getting_started/app/views/posts/show.html.erb +++ b/guides/code/getting_started/app/views/posts/show.html.erb @@ -2,7 +2,7 @@ Title: <%= @post.title %>

- +

Text: <%= @post.text %> @@ -10,9 +10,9 @@

Comments

<%= render @post.comments %> - +

Add a comment:

<%= render "comments/form" %> - + <%= link_to 'Edit Post', edit_post_path(@post) %> | <%= link_to 'Back to Posts', posts_path %> -- cgit v1.2.3