Skip to content

Instantly share code, notes, and snippets.

@johanb
Created May 16, 2012 09:16
Show Gist options
  • Save johanb/2708991 to your computer and use it in GitHub Desktop.
Save johanb/2708991 to your computer and use it in GitHub Desktop.
<% content_for :content do %>
<section>
<h1>Name</h1>
<p>
<%=raw @product.name %>
</p>
</section>
<% end %>
<% content_for :body_content_right do %>
<aside>
<h1>Recepten</h1>
<ul id="recipes">
<% @recipes.each do |recipe| %>
<li>
<h2><%= recipe.name %></h2>
<h3>Ingredienten</h3>
<p><%=raw recipe.ingredients %></p>
<h3>Instructies</h3>
<p><%=raw recipe.instructions %></p>
</li>
<% end %>
</ul>
</aside>
<% end %>
<%= render '/refinery/content_page' %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment