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" }
|
2018-07-26 11:00:18 -04:00
|
|
|
|
2020-08-20 17:10:18 -04:00
|
|
|
= render 'layouts/loading_hints'
|
2020-06-05 17:08:27 -04:00
|
|
|
|
2016-12-26 05:47:16 -05:00
|
|
|
%meta{ 'http-equiv' => 'X-UA-Compatible', content: 'IE=edge' }
|
2014-06-18 10:18:38 -04:00
|
|
|
|
2020-06-19 14:08:39 -04:00
|
|
|
= render 'layouts/startup_js'
|
|
|
|
|
2015-12-23 13:55:15 -05:00
|
|
|
-# Open Graph - http://ogp.me/
|
2019-01-16 07:09:29 -05:00
|
|
|
%meta{ property: 'og:type', content: "object" }
|
|
|
|
%meta{ property: 'og:site_name', content: site_name }
|
|
|
|
%meta{ property: 'og:title', content: page_title }
|
2016-12-26 05:47:16 -05:00
|
|
|
%meta{ property: 'og:description', content: page_description }
|
2019-01-16 07:09:29 -05:00
|
|
|
%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' }
|
2019-01-16 07:09:29 -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
|
2019-01-16 07:09:29 -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
|
|
|
|
2020-09-25 11:09:36 -04:00
|
|
|
- if page_canonical_link
|
|
|
|
%link{ rel: 'canonical', href: page_canonical_link }
|
|
|
|
|
2021-05-19 02:10:37 -04:00
|
|
|
= yield :prefetch_asset_tags
|
2021-05-11 08:10:20 -04:00
|
|
|
|
2017-12-06 15:04:53 -05:00
|
|
|
= favicon_link_tag favicon, id: 'favicon', data: { original_href: favicon }, type: 'image/png'
|
2015-07-07 00:31:59 -04:00
|
|
|
|
2021-06-03 14:09:58 -04:00
|
|
|
= render 'layouts/startup_css', { startup_filename: local_assigns.fetch(:startup_filename, nil) }
|
2020-06-11 11:08:36 -04:00
|
|
|
- if user_application_theme == 'gl-dark'
|
2022-02-18 13:18:16 -05:00
|
|
|
%meta{ name: 'color-scheme', content: 'dark light' }
|
2020-08-04 17:09:56 -04:00
|
|
|
= stylesheet_link_tag_defer "application_dark"
|
2021-07-22 14:08:29 -04:00
|
|
|
= yield :page_specific_styles
|
|
|
|
= stylesheet_link_tag_defer "application_utilities_dark"
|
2020-06-11 11:08:36 -04:00
|
|
|
- else
|
2020-08-04 17:09:56 -04:00
|
|
|
= stylesheet_link_tag_defer "application"
|
2021-07-22 14:08:29 -04:00
|
|
|
= yield :page_specific_styles
|
|
|
|
= stylesheet_link_tag_defer 'application_utilities'
|
2020-01-06 07:07:56 -05:00
|
|
|
= stylesheet_link_tag "disable_animations", media: "all" if Rails.env.test? || Gitlab.config.gitlab['disable_animations']
|
2021-03-02 13:11:20 -05:00
|
|
|
= stylesheet_link_tag "test_environment", media: "all" if Rails.env.test?
|
2015-07-07 00:31:59 -04:00
|
|
|
|
2020-08-04 17:09:56 -04:00
|
|
|
= stylesheet_link_tag_defer "highlight/themes/#{user_color_scheme}"
|
2019-02-14 01:54:34 -05:00
|
|
|
|
2020-08-20 05:09:55 -04:00
|
|
|
= render 'layouts/startup_css_activation'
|
2020-08-06 20:09:52 -04:00
|
|
|
|
2020-09-28 05:09:35 -04:00
|
|
|
= stylesheet_link_tag 'performance_bar' if performance_bar_enabled?
|
|
|
|
|
2019-08-06 02:14:32 -04:00
|
|
|
= Gon::Base.render_data(nonce: content_security_policy_nonce)
|
2017-04-14 22:38:59 -04:00
|
|
|
|
2017-10-18 04:29:18 -04:00
|
|
|
= javascript_include_tag locale_path unless I18n.locale == :en
|
2021-02-18 13:10:41 -05:00
|
|
|
= webpack_bundle_tag "sentry" if Gitlab.config.sentry.enabled
|
2020-10-01 08:10:14 -04:00
|
|
|
= webpack_bundle_tag 'performance_bar' if performance_bar_enabled?
|
2017-04-28 11:01:22 -04:00
|
|
|
|
2020-10-01 17:08:36 -04:00
|
|
|
= yield :page_specific_javascripts
|
2016-05-31 20:07:44 -04:00
|
|
|
|
2018-02-01 22:34:01 -05:00
|
|
|
= webpack_controller_bundle_tags
|
|
|
|
|
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
|
2019-08-06 02:14:32 -04:00
|
|
|
= csp_meta_tag
|
2020-05-04 08:09:46 -04:00
|
|
|
= action_cable_meta_tag
|
2015-07-07 00:31:59 -04:00
|
|
|
|
2016-12-26 05:47:16 -05:00
|
|
|
%meta{ name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1' }
|
2021-06-09 14:11:25 -04:00
|
|
|
%meta{ name: 'theme-color', content: user_theme_primary_color }
|
2013-01-12 14:54:52 -05:00
|
|
|
|
2015-07-07 00:31:59 -04:00
|
|
|
-# Apple Safari/iOS home screen icons
|
2019-01-16 07:09:29 -05:00
|
|
|
= 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-07-07 00:31:59 -04:00
|
|
|
= favicon_link_tag 'touch-icon-iphone-retina.png', rel: 'apple-touch-icon', sizes: '120x120'
|
2019-01-16 07:09:29 -05:00
|
|
|
= 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
|
|
|
|
2021-02-01 07:09:03 -05:00
|
|
|
-# OpenSearch
|
|
|
|
%link{ href: search_opensearch_path(format: :xml), rel: 'search', title: 'Search GitLab', type: 'application/opensearchdescription+xml' }
|
|
|
|
|
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')
|
2020-11-25 13:09:53 -05:00
|
|
|
= render 'layouts/matomo' if extra_config.has_key?('matomo_url') && extra_config.has_key?('matomo_site_id')
|
2019-10-22 17:06:42 -04:00
|
|
|
= render 'layouts/snowplow'
|
2021-10-28 17:10:02 -04:00
|
|
|
-# This is needed by [GitLab JH](https://gitlab.com/gitlab-jh/gitlab/-/issues/184)
|
|
|
|
= render_if_exists "layouts/frontend_monitor"
|