2012-02-09 02:59:04 -05:00
|
|
|
%head
|
2012-08-10 18:07:50 -04:00
|
|
|
%meta{charset: "utf-8"}
|
2012-02-09 02:59:04 -05:00
|
|
|
%title
|
2013-01-02 14:52:03 -05:00
|
|
|
= "#{title} | " if defined?(title)
|
2012-02-09 02:59:04 -05:00
|
|
|
GitLab
|
|
|
|
= favicon_link_tag 'favicon.ico'
|
|
|
|
= stylesheet_link_tag "application"
|
|
|
|
= javascript_include_tag "application"
|
|
|
|
-# Atom feed
|
2012-06-01 02:42:02 -04:00
|
|
|
- if controller_name == 'projects' && action_name == 'index'
|
2012-08-10 18:07:50 -04:00
|
|
|
= auto_discovery_link_tag :atom, projects_url(:atom, private_token: current_user.private_token), title: "Dashboard feed"
|
2012-02-09 02:59:04 -05:00
|
|
|
- if @project && !@project.new_record?
|
2012-09-25 23:33:42 -04:00
|
|
|
- if current_controller?(:tree, :commits)
|
2012-09-25 18:50:02 -04: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-25 22:41:25 -04:00
|
|
|
- if current_controller?(:issues)
|
2012-08-10 18:07:50 -04:00
|
|
|
= auto_discovery_link_tag(:atom, project_issues_url(@project, :atom, private_token: current_user.private_token), title: "#{@project.name} issues")
|
2012-02-09 02:59:04 -05:00
|
|
|
= csrf_meta_tags
|