I created a new site with the following code

rails new new_site

and I added a site controller and in my site.rhtml file

<html>
    <head>
        <title><%= @title %></title>
    </head>
    <body>
        <%= link_to("Home", { :action => "index" }) %> |
        <%= link_to("About Us", { :action => "about" }) %> |
        <%= link_to("Help", { :action => "help" }) %>
        <%= @content_for_layout %>
    </body>
</html>

I have 3 files (about.rhtml, help.rhtml, index.rhtml)

Each file has basic code in it for HTML view

Here's the code to help.rhtml

<h1>Help</h1>
<p>This page will contains instructions and a frequently asked questions.</p>

THE ISSUE IS WHEN I CLICK the link for Help. The title changes but the contents don't load.

link|improve this question

I edited your post to use code tags. There is a "code" button on the editor that you could have used (don't use pre tags, you don't get syntax highlighting and can't use html). To use it, you highlight text you want to make code and press it. – ryeguy Dec 10 '10 at 20:24
feedback

2 Answers

up vote 1 down vote accepted

Looks like you're following a very old tutorial.

I recommend stopping that and reading the official guides (which have a great "Getting Started" guide), or a book.

link|improve this answer
Im using RailSpace book. I felt that it was outdated a bit but its still good for learning. right? there are a few changes that I noticed like script/server is now rails server – Cocoa Dev Dec 10 '10 at 22:54
1  
well you can install the version of rails that the book uses, and it will make more sense, trying to use a rails 2.x book with rails 3 will be a lesson in frustration... – Doon Dec 11 '10 at 4:03
feedback

are you following an old tutorial? Try the following..

should be in a file called application.html.erb in the layouts directory

<html>
    <head>
        <title></title>
    </head>
    <body>
        <%= link_to("Home", { :action => "index" }) %> |
        <%= link_to("About Us", { :action => "about" }) %> |
        <%= link_to("Help", { :action => "help" }) %>
        <%= yield %>
    </body>
</html>

or if you just want it for the site controller, use site.html.erb

link|improve this answer
Must be a really old tutorial. He's using .rhtml files. – ryeguy Dec 10 '10 at 20:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.