gitlab-org--gitlab-foss/app/views/layouts/_head.html.haml

32 lines
1.5 KiB
Plaintext
Raw Normal View History

2012-02-09 07:59:04 +00:00
%head
%meta{charset: "utf-8"}
2012-02-09 07:59:04 +00:00
%title
2013-01-02 19:52:03 +00:00
= "#{title} | " if defined?(title)
2012-02-09 07:59:04 +00:00
GitLab
= favicon_link_tag 'favicon.ico'
2014-03-24 03:13:01 +00:00
= stylesheet_link_tag "application", :media => "all"
= stylesheet_link_tag "print", :media => "print"
2012-02-09 07:59:04 +00:00
= javascript_include_tag "application"
= csrf_meta_tags
= include_gon
:erb
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2013-01-12 19:54:52 +00:00
= render 'layouts/google_analytics' if extra_config.has_key?('google_analytics_id')
2014-02-23 14:06:49 +00:00
= render 'layouts/piwik' if extra_config.has_key?('piwik_url') && extra_config.has_key?('piwik_site_id')
2013-01-12 19:54:52 +00:00
-# Atom feed
- if current_user
- if controller_name == 'projects' && action_name == 'index'
= auto_discovery_link_tag :atom, projects_url(:atom, private_token: current_user.private_token), title: "Dashboard feed"
- if @project && !@project.new_record?
- if current_controller?(:tree, :commits)
= 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}")
- if current_controller?(:issues)
= auto_discovery_link_tag(:atom, project_issues_url(@project, :atom, private_token: current_user.private_token), title: "#{@project.name} issues")
-# Go repository retrieval support.
- if controller_name == 'projects' && action_name == 'show'
%meta{name: "go-import", content: "#{@project.web_url_without_protocol} git #{@project.web_url}.git"}