2016-01-14 18:37:52 +05:30
|
|
|
- page_description brand_title unless page_description
|
|
|
|
- site_name = "GitLab"
|
2017-08-17 22:00:37 +05:30
|
|
|
%head{ prefix: "og: http://ogp.me/ns#" }
|
|
|
|
%meta{ charset: "utf-8" }
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
= render 'layouts/loading_hints'
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
%meta{ 'http-equiv' => 'X-UA-Compatible', content: 'IE=edge' }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
= render 'layouts/startup_js'
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
-# Open Graph - http://ogp.me/
|
2019-03-02 22:35:43 +05:30
|
|
|
%meta{ property: 'og:type', content: "object" }
|
|
|
|
%meta{ property: 'og:site_name', content: site_name }
|
|
|
|
%meta{ property: 'og:title', content: page_title }
|
2017-08-17 22:00:37 +05:30
|
|
|
%meta{ property: 'og:description', content: page_description }
|
2019-03-02 22:35:43 +05:30
|
|
|
%meta{ property: 'og:image', content: page_image }
|
2017-09-10 17:25:29 +05:30
|
|
|
%meta{ property: 'og:image:width', content: '64' }
|
|
|
|
%meta{ property: 'og:image:height', content: '64' }
|
2019-03-02 22:35:43 +05:30
|
|
|
%meta{ property: 'og:url', content: request.base_url + request.fullpath }
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
-# Twitter Card - https://dev.twitter.com/cards/types/summary
|
2019-03-02 22:35:43 +05:30
|
|
|
%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 }
|
2016-01-14 18:37:52 +05:30
|
|
|
= page_card_meta_tags
|
|
|
|
|
|
|
|
%title= page_title(site_name)
|
2017-08-17 22:00:37 +05:30
|
|
|
%meta{ name: "description", content: page_description }
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
- if page_canonical_link
|
|
|
|
%link{ rel: 'canonical', href: page_canonical_link }
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
= favicon_link_tag favicon, id: 'favicon', data: { original_href: favicon }, type: 'image/png'
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
= render 'layouts/startup_css'
|
2020-06-23 00:09:42 +05:30
|
|
|
- if user_application_theme == 'gl-dark'
|
2020-10-24 23:57:45 +05:30
|
|
|
= stylesheet_link_tag_defer "application_dark"
|
2021-01-03 14:25:43 +05:30
|
|
|
= yield :page_specific_styles
|
|
|
|
= stylesheet_link_tag_defer "application_utilities_dark"
|
2020-06-23 00:09:42 +05:30
|
|
|
- else
|
2020-10-24 23:57:45 +05:30
|
|
|
= stylesheet_link_tag_defer "application"
|
2021-01-03 14:25:43 +05:30
|
|
|
= yield :page_specific_styles
|
|
|
|
= stylesheet_link_tag_defer "application_utilities"
|
2020-03-13 15:44:24 +05:30
|
|
|
= stylesheet_link_tag "disable_animations", media: "all" if Rails.env.test? || Gitlab.config.gitlab['disable_animations']
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
= stylesheet_link_tag_defer "highlight/themes/#{user_color_scheme}"
|
|
|
|
|
|
|
|
= render 'layouts/startup_css_activation'
|
2019-07-07 11:18:12 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
= stylesheet_link_tag 'performance_bar' if performance_bar_enabled?
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
= Gon::Base.render_data(nonce: content_security_policy_nonce)
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
= javascript_include_tag locale_path unless I18n.locale == :en
|
2021-01-03 14:25:43 +05:30
|
|
|
-# Temporarily commented out to investigate performance: https://gitlab.com/gitlab-org/gitlab/-/issues/251179
|
|
|
|
-# = webpack_bundle_tag "sentry" if Gitlab.config.sentry.enabled
|
|
|
|
= webpack_bundle_tag 'performance_bar' if performance_bar_enabled?
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
= yield :page_specific_javascripts
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
= webpack_controller_bundle_tags
|
2020-11-24 15:15:51 +05:30
|
|
|
= webpack_bundle_tag "chrome_84_icon_fix" if browser.chrome?([">=84", "<84.0.4147.125"]) || browser.edge?([">=84", "<84.0.522.59"])
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
= yield :project_javascripts
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
= csrf_meta_tags
|
2019-10-12 21:52:04 +05:30
|
|
|
= csp_meta_tag
|
2020-05-24 23:13:21 +05:30
|
|
|
= action_cable_meta_tag
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
%meta{ name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1' }
|
|
|
|
%meta{ name: 'theme-color', content: '#474D57' }
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
-# Apple Safari/iOS home screen icons
|
2019-03-02 22:35:43 +05:30
|
|
|
= favicon_link_tag 'touch-icon-iphone.png', rel: 'apple-touch-icon'
|
|
|
|
= favicon_link_tag 'touch-icon-ipad.png', rel: 'apple-touch-icon', sizes: '76x76'
|
2015-09-11 14:41:01 +05:30
|
|
|
= favicon_link_tag 'touch-icon-iphone-retina.png', rel: 'apple-touch-icon', sizes: '120x120'
|
2019-03-02 22:35:43 +05:30
|
|
|
= favicon_link_tag 'touch-icon-ipad-retina.png', rel: 'apple-touch-icon', sizes: '152x152'
|
2017-08-17 22:00:37 +05:30
|
|
|
%link{ rel: 'mask-icon', href: image_path('logo.svg'), color: 'rgb(226, 67, 41)' }
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
-# OpenSearch
|
|
|
|
%link{ href: search_opensearch_path(format: :xml), rel: 'search', title: 'Search GitLab', type: 'application/opensearchdescription+xml' }
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
-# Windows 8 pinned site tile
|
2017-08-17 22:00:37 +05:30
|
|
|
%meta{ name: 'msapplication-TileImage', content: image_path('msapplication-tile.png') }
|
|
|
|
%meta{ name: 'msapplication-TileColor', content: '#30353E' }
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
= yield :meta_tags
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
= render 'layouts/google_analytics' if extra_config.has_key?('google_analytics_id')
|
2021-02-22 17:27:13 +05:30
|
|
|
= render 'layouts/matomo' if extra_config.has_key?('matomo_url') && extra_config.has_key?('matomo_site_id')
|
2019-12-26 22:10:19 +05:30
|
|
|
= render 'layouts/snowplow'
|