[Rails] Re: content displaying below posts in "[ ]"

2010-04-21 Thread Joe Smith
"Michael Michael" wrote in message news:fce2a0ce9e610603f85b4cff455f6...@ruby-forum.com... I think i found the problem I had <%= @posts.each do |post| %> instead of <% @posts.each do |post| %> I just realized that, because having <%= outputs right? Yep, that sure sounds like that would b

[Rails] Re: content displaying below posts in "[ ]"

2010-04-21 Thread Michael Michael
I think i found the problem I had <%= @posts.each do |post| %> instead of <% @posts.each do |post| %> I just realized that, because having <%= outputs right? Thanks for responding, I appreciate it. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subsc

[Rails] Re: content displaying below posts in "[ ]"

2010-04-21 Thread Michael Michael
My Blog! <%= @posts.each do |post| %> <%= post.title %> <%= post.body %> <% end %> -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-t...@goo

[Rails] Re: content displaying below posts in "[ ]"

2010-04-21 Thread Lee Smith
Post your view code. On Apr 21, 10:20 pm, Michael Michael wrote: > I am running into this issue, I am a super newbie when it comes to ruby > on rails, mysql. I am a front-end developer trying to get into more of a > MVC type structured language, and ruby on rails seemed like the one. > > Here is