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.
pretags, 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