2016-01-06 07:02:51 -05:00
|
|
|
- page_description brand_title unless page_description
|
|
|
|
|
2015-12-25 10:41:02 -05:00
|
|
|
- site_name = "GitLab"
|
2016-12-26 05:47:16 -05:00
|
|
|
%head{ prefix: "og: http://ogp.me/ns#" }
|
|
|
|
%meta{ charset: "utf-8" }
|
|
|
|
%meta{ 'http-equiv' => 'X-UA-Compatible', content: 'IE=edge' }
|
2014-06-18 10:18:38 -04:00
|
|
|
|
2015-12-23 13:55:15 -05:00
|
|
|
-# Open Graph - http://ogp.me/
|
2016-12-26 05:47:16 -05:00
|
|
|
%meta{ property: 'og:type', content: "object" }
|
|
|
|
%meta{ property: 'og:site_name', content: site_name }
|
|
|
|
%meta{ property: 'og:title', content: page_title }
|
|
|
|
%meta{ property: 'og:description', content: page_description }
|
|
|
|
%meta{ property: 'og:image', content: page_image }
|
2017-06-28 20:06:42 -04:00
|
|
|
%meta{ property: 'og:image:width', content: '64' }
|
|
|
|
%meta{ property: 'og:image:height', content: '64' }
|
2016-12-26 05:47:16 -05:00
|
|
|
%meta{ property: 'og:url', content: request.base_url + request.fullpath }
|
2015-12-25 07:35:57 -05:00
|
|
|
|
2015-12-25 07:38:54 -05:00
|
|
|
-# Twitter Card - https://dev.twitter.com/cards/types/summary
|
2016-12-26 05:47:16 -05:00
|
|
|
%meta{ property: 'twitter:card', content: "summary" }
|
|
|
|
%meta{ property: 'twitter:title', content: page_title }
|
|
|
|
%meta{ property: 'twitter:description', content: page_description }
|
|
|
|
%meta{ property: 'twitter:image', content: page_image }
|
2015-12-24 17:03:54 -05:00
|
|
|
= page_card_meta_tags
|
2015-12-23 13:55:15 -05:00
|
|
|
|
2016-01-05 10:35:18 -05:00
|
|
|
%title= page_title(site_name)
|
2016-12-26 05:47:16 -05:00
|
|
|
%meta{ name: "description", content: page_description }
|
2015-04-21 10:31:40 -04:00
|
|
|
|
2017-04-06 06:40:39 -04:00
|
|
|
= favicon_link_tag favicon, id: 'favicon'
|
2015-07-07 00:31:59 -04:00
|
|
|
|
2016-06-27 09:47:33 -04:00
|
|
|
= stylesheet_link_tag "application", media: "all"
|
|
|
|
= stylesheet_link_tag "print", media: "print"
|
2017-05-12 17:57:50 -04:00
|
|
|
= stylesheet_link_tag "test", media: "all" if Rails.env.test?
|
2017-07-06 15:37:31 -04:00
|
|
|
= stylesheet_link_tag 'performance_bar' if performance_bar_enabled?
|
2015-07-07 00:31:59 -04:00
|
|
|
|
2017-04-14 22:38:59 -04:00
|
|
|
= Gon::Base.render_data
|
|
|
|
|
2017-08-04 11:09:25 -04:00
|
|
|
- if content_for?(:library_javascripts)
|
|
|
|
= yield :library_javascripts
|
|
|
|
|
2017-06-28 16:15:50 -04:00
|
|
|
= webpack_bundle_tag "webpack_runtime"
|
2017-04-12 15:05:23 -04:00
|
|
|
= webpack_bundle_tag "common"
|
2017-06-07 16:13:44 -04:00
|
|
|
= webpack_bundle_tag "locale"
|
2017-04-12 15:05:23 -04:00
|
|
|
= webpack_bundle_tag "main"
|
2017-04-28 11:01:22 -04:00
|
|
|
= webpack_bundle_tag "raven" if current_application_settings.clientside_sentry_enabled
|
2017-05-12 17:57:50 -04:00
|
|
|
= webpack_bundle_tag "test" if Rails.env.test?
|
2017-07-06 15:37:31 -04:00
|
|
|
= webpack_bundle_tag 'performance_bar' if performance_bar_enabled?
|
2017-04-28 11:01:22 -04:00
|
|
|
|
2016-06-23 13:09:46 -04:00
|
|
|
- if content_for?(:page_specific_javascripts)
|
2016-06-23 12:33:38 -04:00
|
|
|
= yield :page_specific_javascripts
|
2016-05-31 20:07:44 -04:00
|
|
|
|
2017-02-02 14:06:43 -05:00
|
|
|
= yield :project_javascripts
|
2017-01-13 16:54:16 -05:00
|
|
|
|
2012-02-09 02:59:04 -05:00
|
|
|
= csrf_meta_tags
|
2015-07-07 00:31:59 -04:00
|
|
|
|
2015-12-31 20:42:46 -05:00
|
|
|
- unless browser.safari?
|
2016-12-26 05:47:16 -05:00
|
|
|
%meta{ name: 'referrer', content: 'origin-when-cross-origin' }
|
|
|
|
%meta{ name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1' }
|
|
|
|
%meta{ name: 'theme-color', content: '#474D57' }
|
2013-01-12 14:54:52 -05:00
|
|
|
|
2015-07-07 00:31:59 -04: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'
|
2016-12-26 05:47:16 -05:00
|
|
|
%link{ rel: 'mask-icon', href: image_path('logo.svg'), color: 'rgb(226, 67, 41)' }
|
2015-07-07 00:31:59 -04:00
|
|
|
|
2015-07-09 01:43:48 -04:00
|
|
|
-# Windows 8 pinned site tile
|
2016-12-26 05:47:16 -05:00
|
|
|
%meta{ name: 'msapplication-TileImage', content: image_path('msapplication-tile.png') }
|
|
|
|
%meta{ name: 'msapplication-TileColor', content: '#30353E' }
|
2015-07-09 01:43:48 -04:00
|
|
|
|
2015-06-02 08:56:50 -04:00
|
|
|
= yield :meta_tags
|
2015-04-21 10:31:40 -04: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')
|