gitlabhq/app/views/layouts/project.html.haml

22 lines
1,019 B
Plaintext
Raw Normal View History

2011-10-28 14:07:58 +02:00
!!!
%html
%head
2012-01-26 08:50:11 +01:00
%meta{:charset => "utf-8"}
2011-10-28 14:07:58 +02:00
%title
2012-01-26 18:25:35 +01:00
GitLab
= " - #{@project.name}" if @project && !@project.new_record?
2011-12-28 08:18:50 +01:00
= favicon_link_tag 'favicon.ico'
2011-10-28 14:07:58 +02:00
= stylesheet_link_tag "application"
= javascript_include_tag "application"
2011-11-16 06:38:53 +01:00
- if current_page?(tree_project_ref_path(@project, @project.root_ref)) || current_page?(project_commits_path(@project))
2011-11-15 08:25:26 +01:00
= auto_discovery_link_tag(:atom, project_commits_url(@project, :atom, :ref => @ref, :private_token => current_user.private_token), :title => "Recent commits to #{@project.name}:#{@ref}")
2011-11-11 10:29:58 +01:00
- if request.path == project_issues_path(@project)
2011-11-15 08:25:26 +01:00
= auto_discovery_link_tag(:atom, project_issues_url(@project, :atom, :private_token => current_user.private_token), :title => "#{@project.name} issues")
2011-10-28 14:07:58 +02:00
= csrf_meta_tags
2012-01-26 18:25:35 +01:00
%body.project
= render :partial => "layouts/flash"
2012-01-26 18:25:35 +01:00
= render :partial => "layouts/head_panel"
.container-fluid
.sidebar= render :partial => "layouts/project_side"
.content= yield