diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2008-10-21 17:44:25 +0100 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-10-21 17:44:25 +0100 |
commit | a06990acaca3e2dd091dfa36b11bc13201fcfd8b (patch) | |
tree | 823643b24513b2dbcee061503d47d23b48dcf552 /railties/doc/guides/source | |
parent | 5dd10c881cb8d598f9ea1e0776c80bc5b7816b3c (diff) | |
download | rails-a06990acaca3e2dd091dfa36b11bc13201fcfd8b.tar.gz rails-a06990acaca3e2dd091dfa36b11bc13201fcfd8b.tar.bz2 rails-a06990acaca3e2dd091dfa36b11bc13201fcfd8b.zip |
Fix index
Diffstat (limited to 'railties/doc/guides/source')
-rw-r--r-- | railties/doc/guides/source/templates/guides.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/doc/guides/source/templates/guides.html.erb b/railties/doc/guides/source/templates/guides.html.erb index ed010e2e30..d69cf5e08a 100644 --- a/railties/doc/guides/source/templates/guides.html.erb +++ b/railties/doc/guides/source/templates/guides.html.erb @@ -1,5 +1,5 @@ <%- - manuals_index_url = ENV['MANUALSONRAILS_INDEX_URL'] || "http://guides.rubyonrails.org/" + manuals_index_url = ENV['MANUALSONRAILS_INDEX_URL'] || "index.html" show_toc = ENV['MANUALSONRAILS_TOC'] != 'no' -%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> @@ -20,7 +20,7 @@ <body> <div id="header" <% if !show_toc %> class="notoc"<% end %>> <div id="logo"> - <a href="http://guides.rubyonrails.org/" title="Ruby on Rails"><img src="images/rails_logo_remix.gif" alt="Rails" height="140" width="110" /></a> + <a href="index.html" title="Ruby on Rails"><img src="images/rails_logo_remix.gif" alt="Rails" height="140" width="110" /></a> </div> <h1 id="site_title"><span>Ruby on Rails</span></h1> @@ -28,7 +28,7 @@ <ul id="navMain"> <li class="first-child"><a href="http://www.rubyonrails.org/" title="Ruby on Rails" class="ruby_on_rails">Ruby on Rails</a></li> - <li><a class="manuals" href="<%=h manuals_index_url %>" title="Manuals Index">Guides Index</a></li> + <li><a class="manuals" href="index.html" title="Manuals Index">Guides Index</a></li> </ul> </div> |