Skip to content

Instantly share code, notes, and snippets.

@gtyanchev
Last active December 12, 2017 09:57
Show Gist options
  • Save gtyanchev/2d228222414cfebed936ba4a3faabc84 to your computer and use it in GitHub Desktop.
Save gtyanchev/2d228222414cfebed936ba4a3faabc84 to your computer and use it in GitHub Desktop.
Partial with yield
<div>
yeeee I'm rendered
<p>
<%= yield :paragraph %>
</p>
<strong>
<%= yield :bold_text %>
</strong>
</div>
<%= render partial: 'simple_partial' do %>
<%= content_for :paragraph do %>
Partiaaaaaal wabadubdaaa
<% end %>
<%= content_for :bold_text do %>
I'm Boldemooooor
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment