2012-02-09 08:59:04 +01:00
|
|
|
%head
|
2012-08-11 00:07:50 +02:00
|
|
|
%meta{charset: "utf-8"}
|
2012-02-09 08:59:04 +01:00
|
|
|
%title
|
|
|
|
GitLab
|
2012-04-24 20:47:01 +02:00
|
|
|
= " > #{@project.name}" if @project && !@project.new_record?
|
2012-02-09 08:59:04 +01:00
|
|
|
= favicon_link_tag 'favicon.ico'
|
|
|
|
= stylesheet_link_tag "application"
|
|
|
|
= javascript_include_tag "application"
|
|
|
|
-# Atom feed
|
2012-06-01 08:42:02 +02:00
|
|
|
- if controller_name == 'projects' && action_name == 'index'
|
2012-08-11 00:07:50 +02:00
|
|
|
= auto_discovery_link_tag :atom, projects_url(:atom, private_token: current_user.private_token), title: "Dashboard feed"
|
2012-02-09 08:59:04 +01:00
|
|
|
- if @project && !@project.new_record?
|
2012-09-26 05:33:42 +02:00
|
|
|
- if current_controller?(:tree, :commits)
|
2012-09-26 00:50:02 +02:00
|
|
|
= auto_discovery_link_tag(:atom, project_commits_url(@project, @ref, format: :atom, private_token: current_user.private_token), title: "Recent commits to #{@project.name}:#{@ref}")
|
2012-09-26 04:41:25 +02:00
|
|
|
- if current_controller?(:issues)
|
2012-08-11 00:07:50 +02:00
|
|
|
= auto_discovery_link_tag(:atom, project_issues_url(@project, :atom, private_token: current_user.private_token), title: "#{@project.name} issues")
|
2012-02-09 08:59:04 +01:00
|
|
|
= csrf_meta_tags
|