views/index.erb in libdolt-0.18.0 vs views/index.erb in libdolt-0.19.0
- old
+ new
@@ -17,11 +17,20 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#++
%>
<div class="container gts-body">
<h1><%= @title = "All repositories" %></h1>
- <ul>
- <% repositories.each do |repo| %>
- <li><a href="/<%= repo %>/tree/master:"><%= repo %></a></li>
+ <table class="table table-striped">
+ <tbody>
+ <% repositories.each do |repo| %>
+ <tr>
+ <td>
+ <a href="/<%= repo %>/tree/master:">
+ <i class="icon-folder-close"></i>
+ <%= repo %>
+ </a>
+ </td>
+ </tr>
<% end %>
- </ul>
+ </tbody>
+ </table>
</div>