mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 18:38:12 +01:00
9 lines
413 B
Plaintext
9 lines
413 B
Plaintext
<% found_const = false %>
|
|
<% inherited_constant_list do |superclass, consts| %>
|
|
<% if constant_listing.size == 0 && !found_const %><h2>Constant Summary</h2><% end %>
|
|
<% found_const = true %>
|
|
<h3 class="inherited">Constants <%= superclass.type == :class ? 'inherited' : 'included' %>
|
|
from <%= linkify superclass %></h3>
|
|
<p class="inherited"><%= consts.map {|c| linkify c }.join(", ") %></p>
|
|
<% end %>
|