mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
8 lines
245 B
Text
8 lines
245 B
Text
<% @nesting -= 1 %>
|
|
<div class="partial" level="<%= @nesting %>">
|
|
<h3>This is a crazy deep-nested partial.</h3>
|
|
<p>Nesting level <%= @nesting %></p>
|
|
<% if @nesting > 0 %>
|
|
<%= render :partial => 'erb/av_partial_2' %>
|
|
<% end %>
|
|
</div>
|