= render "head"

- if params[:path]
  %ul.breadcrumb
    %li
      = link_to project_commits_path(@project) do
        = @project.code
      %span.divider 
        \/
    %li
      %a{:href => "#"}= params[:path].split("/").join(" / ")

%div{:id => dom_id(@project)}
  #commits_list= render "commits"
.clear
.loading{ :style => "display:none;"}

- if @commits.count == @limit
  :javascript
    $(function(){
      CommitsList.init("#{@ref}", #{@limit});
    });