2012-02-09 02:59:04 -05:00
|
|
|
%head
|
2012-08-10 18:07:50 -04:00
|
|
|
%meta{charset: "utf-8"}
|
2014-06-26 05:56:15 -04:00
|
|
|
%meta{content: "GitLab Community Edition", name: "description"}
|
2014-06-18 10:18:38 -04:00
|
|
|
|
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'
|
2014-03-23 23:13:01 -04:00
|
|
|
= stylesheet_link_tag "application", :media => "all"
|
|
|
|
= stylesheet_link_tag "print", :media => "print"
|
2012-02-09 02:59:04 -05:00
|
|
|
= javascript_include_tag "application"
|
|
|
|
= csrf_meta_tags
|
2013-02-19 07:30:37 -05:00
|
|
|
= include_gon
|
2015-02-09 12:11:06 -05:00
|
|
|
%meta{name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1'}
|
2015-01-13 15:04:04 -05:00
|
|
|
%meta{name: 'theme-color', content: '#474D57'}
|
2013-01-12 14:54:52 -05:00
|
|
|
|
2013-05-24 16:17:07 -04:00
|
|
|
= render 'layouts/google_analytics' if extra_config.has_key?('google_analytics_id')
|
2014-02-23 09:06:49 -05:00
|
|
|
= render 'layouts/piwik' if extra_config.has_key?('piwik_url') && extra_config.has_key?('piwik_site_id')
|
2015-04-20 18:28:19 -04:00
|
|
|
= render 'layouts/bootlint' if Rails.env.development?
|
2013-05-08 14:03:36 -04:00
|
|
|
|
2013-01-12 14:54:52 -05: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)
|
2015-01-24 13:02:58 -05:00
|
|
|
= auto_discovery_link_tag(:atom, namespace_project_commits_url(@project.namespace, @project, @ref, format: :atom, private_token: current_user.private_token), title: "Recent commits to #{@project.name}:#{@ref}")
|
2013-01-12 14:54:52 -05:00
|
|
|
- if current_controller?(:issues)
|
2015-01-24 13:02:58 -05:00
|
|
|
= auto_discovery_link_tag(:atom, namespace_project_issues_url(@project.namespace, @project, :atom, private_token: current_user.private_token), title: "#{@project.name} issues")
|