Guest User

Untitled

a guest
Jun 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # in some_layout.html.erb
  2. <html>
  3. <head>
  4. ...
  5. </head>
  6. <body>
  7. <% render :partial => 'header' %>
  8. ...
  9.  
  10. # in _header.html.erb
  11. <div id="header">
  12. <ul id="menu">
  13. <% yield :menu_options %>
  14. </ul>
  15. </div>
  16.  
  17. # in _index_menu_options.html.erb
  18. <li><a href="#">Foo</a></li>
  19. <li><a href="#">Bar</a></li>
  20.  
  21. # in index.html.erb
  22. <% content_for :menu_options %>
  23. <%= render :partial => 'index_menu_options' %>
  24. <% end %>
Add Comment
Please, Sign In to add comment