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

41 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-04-30 17:06:18 +00:00
- page_title "GitLab"
2012-02-09 07:59:04 +00:00
%head
%meta{charset: "utf-8"}
%meta{'http-equiv' => 'X-UA-Compatible', content: 'IE=edge'}
%meta{content: "GitLab Community Edition", name: "description"}
%meta{name: 'referrer', content: 'origin-when-cross-origin'}
2015-04-30 17:06:18 +00:00
%title= page_title
2012-02-09 07:59:04 +00:00
= favicon_link_tag 'favicon.ico'
2015-07-07 04:31:59 +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"
2015-07-07 04:31:59 +00:00
2012-02-09 07:59:04 +00:00
= csrf_meta_tags
2015-07-07 04:31:59 +00:00
= include_gon
2015-07-07 04:31:59 +00:00
%meta{name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1'}
%meta{name: 'theme-color', content: '#474D57'}
2013-01-12 19:54:52 +00:00
2015-07-07 04:31:59 +00:00
-# Apple Safari/iOS home screen icons
= favicon_link_tag 'touch-icon-iphone.png', rel: 'apple-touch-icon'
= favicon_link_tag 'touch-icon-ipad.png', rel: 'apple-touch-icon', sizes: '76x76'
= favicon_link_tag 'touch-icon-iphone-retina.png', rel: 'apple-touch-icon', sizes: '120x120'
= favicon_link_tag 'touch-icon-ipad-retina.png', rel: 'apple-touch-icon', sizes: '152x152'
-# Windows 8 pinned site tile
2015-08-06 11:15:33 +00:00
%meta{name: 'msapplication-TileImage', content: image_path('msapplication-tile.png')}
2015-07-10 18:04:56 +00:00
%meta{name: 'msapplication-TileColor', content: '#30353E'}
= yield :meta_tags
= 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')
= render 'layouts/bootlint' if Rails.env.development?
2015-08-06 11:15:33 +00:00
= render 'layouts/user_styles'