% title (t "admin_panel.files") + " - " + @config.website_name %>
<%= content_tag(:div, class: 'container top-container') do %>
<%= content_tag(:div, class: 'row') do %>
<%= content_tag(:div, class: 'span12') do %>
<%= bootstrap_flash %>
<% # Page Content %>
<%= render 'admin_panel/sidebar_nav' %>
<%= bootstrap_flash %>
<% if @uploads != nil %>
<% @uploads.each do |upload| %>
-
<% if upload.file.content_type.to_s.start_with?('image') && upload.file.thumb.to_s != nil %>
<%= image_tag upload.file.thumb.to_s %>
<% else %>

<% end %>
<%= link_to upload.title, upload_path(upload) %>
<%= upload.description %>
<% end %>
<% end %>
<% # End of Page Content %>
<% end %>
<% end %>
<% end %>