123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title><%= yield(:page_title) || 'Ruby on Rails Guides' %></title>
- <link rel="stylesheet" type="text/css" href="stylesheets/style.css" />
- <link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
- <link rel="stylesheet" type="text/css" href="stylesheets/syntaxhighlighter/shCore.css" />
- <link rel="stylesheet" type="text/css" href="stylesheets/syntaxhighlighter/shThemeRailsGuides.css" />
- <link rel="stylesheet" type="text/css" href="stylesheets/fixes.css" />
- </head>
- <body class="guide">
- <% if @edge %>
- <div>
- <img src="images/edge_badge.png" alt="edge-badge" id="edge-badge" />
- </div>
- <% end %>
- <div id="topNav">
- <div class="wrapper">
- <strong>More at <a href="http://rubyonrails.org/">rubyonrails.org:</a> </strong>
- <a href="http://rubyonrails.org/">Overview</a> |
- <a href="http://rubyonrails.org/download">Download</a> |
- <a href="http://rubyonrails.org/deploy">Deploy</a> |
- <a href="https://github.com/rails/rails">Code</a> |
- <a href="http://rubyonrails.org/screencasts">Screencasts</a> |
- <a href="http://rubyonrails.org/documentation">Documentation</a> |
- <a href="http://rubyonrails.org/ecosystem">Ecosystem</a> |
- <a href="http://rubyonrails.org/community">Community</a> |
- <a href="http://weblog.rubyonrails.org/">Blog</a>
- </div>
- </div>
- <div id="header">
- <div class="wrapper clearfix">
- <h1><a href="index.html" title="Return to home page">Guides.rubyonrails.org</a></h1>
- <ul class="nav">
- <li><a href="index.html">Home</a></li>
- <li class="index"><a href="index.html" onclick="guideMenu(); return false;" id="guidesMenu">Guides Index</a>
- <div id="guides" class="clearfix" style="display: none;">
- <hr />
- <% ['L', 'R'].each do |position| %>
- <dl class="<%= position %>">
- <% docs_for_menu(position).each do |section| %>
- <dt><%= section['name'] %></dt>
- <% finished_documents(section['documents']).each do |document| %>
- <dd><a href="<%= document['url'] %>"><%= document['name'] %></a></dd>
- <% end %>
- <% end %>
- </dl>
- <% end %>
- </div>
- </li>
- <li><a href="contributing_to_ruby_on_rails.html">Contribute</a></li>
- <li><a href="credits.html">Credits</a></li>
- </ul>
- </div>
- </div>
- <hr class="hide" />
- <div id="feature">
- <div class="wrapper">
- <%= yield :header_section %>
- <%= yield :index_section %>
- </div>
- </div>
- <div id="container">
- <div class="wrapper">
- <div id="mainCol">
- <%= yield.html_safe %>
- <h3>Feedback</h3>
- <p>
- You're encouraged to help improve the quality of this guide.
- </p>
- <p>
- If you see any typos or factual errors you are confident to
- patch, please clone <%= link_to 'docrails', 'https://github.com/lifo/docrails' %>
- and push the change yourself. That branch of Rails has public write access.
- Commits are still reviewed, but that happens after you've submitted your
- contribution. <%= link_to 'docrails', 'https://github.com/lifo/docrails' %> is
- cross-merged with master periodically.
- </p>
- <p>
- You may also find incomplete content, or stuff that is not up to date.
- Please do add any missing documentation for master. Check the
- <%= link_to 'Ruby on Rails Guides Guidelines', 'ruby_on_rails_guides_guidelines.html' %>
- for style and conventions.
- </p>
- <p>
- If for whatever reason you spot something to fix but cannot patch it yourself, please
- <%= link_to 'open an issue', 'https://github.com/rails/rails/issues' %>.
- </p>
- <p>And last but not least, any kind of discussion regarding Ruby on Rails
- documentation is very welcome in the <%= link_to 'rubyonrails-docs mailing list', 'http://groups.google.com/group/rubyonrails-docs' %>.
- </p>
- </div>
- </div>
- </div>
- <hr class="hide" />
- <div id="footer">
- <div class="wrapper">
- <%= render 'license' %>
- </div>
- </div>
- <script type="text/javascript" src="javascripts/guides.js"></script>
- <script type="text/javascript" src="javascripts/syntaxhighlighter/shCore.js"></script>
- <script type="text/javascript" src="javascripts/syntaxhighlighter/shBrushRuby.js"></script>
- <script type="text/javascript" src="javascripts/syntaxhighlighter/shBrushXml.js"></script>
- <script type="text/javascript" src="javascripts/syntaxhighlighter/shBrushSql.js"></script>
- <script type="text/javascript" src="javascripts/syntaxhighlighter/shBrushPlain.js"></script>
- <script type="text/javascript">
- SyntaxHighlighter.all()
- </script>
- </body>
- </html>
|