mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 18:38:12 +01:00
10 lines
326 B
Plaintext
10 lines
326 B
Plaintext
<% scopes(method_listing(false)) do |list, scope| %>
|
|
<div id="<%= scope %>_method_details" class="method_details_list">
|
|
<h2><%= scope.to_s.capitalize %> Method Details</h2>
|
|
|
|
<% list.each_with_index do |meth, i| %>
|
|
<%= yieldall :object => meth, :owner => object, :index => i %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|