mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
335 B
Text
12 lines
335 B
Text
<%- simple_files = @files.select { |f| f.text? } %>
|
|
<%- unless simple_files.empty? then -%>
|
|
<div id="fileindex-section" class="nav-section">
|
|
<h3>Pages</h3>
|
|
|
|
<ul class="link-list">
|
|
<%- simple_files.each do |f| -%>
|
|
<li><a href="<%= rel_prefix %>/<%= f.path %>"><%= h f.page_name %></a>
|
|
<%- end -%>
|
|
</ul>
|
|
</div>
|
|
<%- end -%>
|