1 <%= render partial: 'repository_breadcrumbs' %>
3 <table class="table table-condensed table-hover">
7 <th class="data-size">Size</th>
11 <% @subtree.each do |mode, sha1, size, subpath| %>
14 <span style="opacity: 0.6">
15 <% pathparts = subpath.sub(/^\//, '').split('/')
16 basename = pathparts.pop
18 pathparts.each do |pathpart| %>
19 <% parents = parents + '/' + pathpart %>
20 <%= link_to pathpart, url_for(path: parents) %>
24 <%= link_to basename, url_for(action: :show_blob, path: parents + '/' + basename) %>
26 <td class="data-size">
27 <%= human_readable_bytes_html(size) %>
31 <% if @subtree.empty? %>