_head.html.haml 3.2 KB
Newer Older
1 2
- page_description brand_title unless page_description

3
- site_name = "GitLab"
4 5 6
%head{ prefix: "og: http://ogp.me/ns#" }
  %meta{ charset: "utf-8" }
  %meta{ 'http-equiv' => 'X-UA-Compatible', content: 'IE=edge' }
7

R
Robert Speicher 已提交
8
  -# Open Graph - http://ogp.me/
9 10 11 12 13
  %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 }
D
Douwe Maan 已提交
14 15
  %meta{ property: 'og:image:width', content: '64' }
  %meta{ property: 'og:image:height', content: '64' }
16
  %meta{ property: 'og:url',         content: request.base_url + request.fullpath }
D
Douwe Maan 已提交
17

D
Douwe Maan 已提交
18
  -# Twitter Card - https://dev.twitter.com/cards/types/summary
19 20 21 22
  %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 }
23
  = page_card_meta_tags
R
Robert Speicher 已提交
24

25
  %title= page_title(site_name)
26
  %meta{ name: "description", content: page_description }
27

28
  = favicon_link_tag favicon, id: 'favicon'
29

30 31
  = stylesheet_link_tag "application", media: "all"
  = stylesheet_link_tag "print",       media: "print"
32
  = stylesheet_link_tag "test",        media: "all" if Rails.env.test?
33
  = stylesheet_link_tag 'peek' if peek_enabled?
34

P
Phil Hughes 已提交
35 36
  - if show_new_nav?
    = stylesheet_link_tag "new_nav", media: "all"
37
    = stylesheet_link_tag "new_sidebar", media: "all"
P
Phil Hughes 已提交
38

39 40
  = Gon::Base.render_data

41 42
  = webpack_bundle_tag "runtime"
  = webpack_bundle_tag "common"
43
  = webpack_bundle_tag "locale"
44
  = webpack_bundle_tag "main"
L
Luke "Jared" Bennett 已提交
45
  = webpack_bundle_tag "raven" if current_application_settings.clientside_sentry_enabled
46
  = webpack_bundle_tag "test" if Rails.env.test?
47
  = webpack_bundle_tag 'peek' if peek_enabled?
L
Luke "Jared" Bennett 已提交
48

C
Connor Shea 已提交
49
  - if content_for?(:page_specific_javascripts)
50
    = yield :page_specific_javascripts
51

52
  = yield :project_javascripts
B
Bryce Johnson 已提交
53

D
Dmitriy Zaporozhets 已提交
54
  = csrf_meta_tags
55

56
  - unless browser.safari?
57 58 59
    %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' }
D
Dmitriy Zaporozhets 已提交
60

61 62 63 64 65
  -# 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'
66
  %link{ rel: 'mask-icon', href: image_path('logo.svg'), color: 'rgb(226, 67, 41)' }
67

68
  -# Windows 8 pinned site tile
69 70
  %meta{ name: 'msapplication-TileImage', content: image_path('msapplication-tile.png') }
  %meta{ name: 'msapplication-TileColor', content: '#30353E' }
71

72
  = yield :meta_tags
73

74
  = render 'layouts/google_analytics' if extra_config.has_key?('google_analytics_id')
S
Sebastian Winkler 已提交
75
  = render 'layouts/piwik' if extra_config.has_key?('piwik_url') && extra_config.has_key?('piwik_site_id')
76
  = render 'layouts/bootlint' if Rails.env.development?