Skip to content

Instantly share code, notes, and snippets.

@alagu
Created February 4, 2012 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alagu/1737918 to your computer and use it in GitHub Desktop.
Save alagu/1737918 to your computer and use it in GitHub Desktop.
<li class="result-block <%= result[:type] %>">
<div class="subject">
<%= yield :subject %>
</div>
<div class="snippet">
<%= yield :snippet %>
</div>
</li>
<% content_for :subject do %>
<strong>Hello World</strong>
<% end %>
<% content_for :snippet do %>
<em>Testing partials</em>
<% end %>
<%= render :partial => "custom_block", :layout => "block_layout" %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment