% content_for :left do %>
<%= button_link_to('Add a Gallery', new_admin_gallery_path, :class => 'remote', :icon => 'add') %>
<% end %>
<% if @galleries.empty? -%>
You haven't set up any galleries!
Get started: <%= button_link_to('Add a Gallery', new_admin_gallery_path, :class => 'remote', :icon => 'add') %>
<% else -%>
<%= render :partial => 'list', :locals => {:galleries => @galleries} %>
<% end -%>