Sorry for that, but a new I new in rails. Well I created an application and I'm started editing the front end pages
In Refinery guide tells me to edit the application.html.erb. Then I started editing as follows:
<!DOCTYPE html>
<html>
<head>
<title>A3 Soccer</title>
<%= stylesheet_link_tag :all %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
</head>
<body>
<div id="page_container">
<header>
<h1 id='logo'>
<a href="http://localhost:3000/"><img src="images/logo.png" /></a>
</h1>
<nav id='menu' class='menu clearfix'>
<ul>
<li class='selected first' id='item_0'>
<a href="/">Home</a></li>
<li class='last' id='item_1'>
<a href="/about">About</a></li>
</ul>
</nav>
</header>
<section id='page'>
<section id='body_content' class='no_body_content_right'>
<%= yield %>
<div id="footer">
<p>dsfdsfdsf</p>
</div>
</body>
</html>
But this part of the menu is static:
<nav id='menu' class='menu clearfix'>
<ul>
<li class='selected first' id='item_0'>
<a href="/">Home</a></li>
<li class='last' id='item_1'>
<a href="/about">About</a></li>
</ul>
</nav>
How do I leave it dynamic?
I want to: when I create a page in the admin, that link(of page) to appear in menu of pages on my site