mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 18:38:12 +01:00
14 lines
501 B
Plaintext
14 lines
501 B
Plaintext
<% if constant_listing.size > 0 || object.constants.size > 0 %>
|
|
<h2>Constant Summary</h2>
|
|
<% if constant_listing.size > 0 %>
|
|
<dl class="constants">
|
|
<% constant_listing.each do |cnst| %>
|
|
<dt id="<%= anchor_for(cnst) %>" class="<%= cnst.has_tag?(:deprecated) ? 'deprecated' : '' %>"><%= cnst.name %> =
|
|
<%= yieldall :object => cnst %>
|
|
</dt>
|
|
<dd><pre class="code"><%= format_constant cnst.value %></pre></dd>
|
|
<% end %>
|
|
</dl>
|
|
<% end %>
|
|
<% end %>
|