_head.html.haml 2.2 KB
Newer Older
R
Robert Speicher 已提交
1
%head{prefix: "og: http://ogp.me/ns#"}
2
  %meta{charset: "utf-8"}
3
  %meta{'http-equiv' => 'X-UA-Compatible', content: 'IE=edge'}
R
Robert Speicher 已提交
4 5 6

  %meta{name: "description", content: page_description}
  %meta{name: 'referrer',    content: 'origin-when-cross-origin'}
7

R
Robert Speicher 已提交
8
  -# Open Graph - http://ogp.me/
D
Douwe Maan 已提交
9
  %meta{property: 'og:type',        content: "object"}
D
Douwe Maan 已提交
10
  %meta{property: 'og:site_name',   content: "GitLab"}
R
Robert Speicher 已提交
11 12 13
  %meta{property: 'og:title',       content: page_title}
  %meta{property: 'og:description', content: page_description}
  %meta{property: 'og:image',       content: page_image}
14
  %meta{property: 'og:url',         content: request.base_url + request.fullpath}
D
Douwe Maan 已提交
15 16 17 18 19

  %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}
20
  = page_card_meta_tags
R
Robert Speicher 已提交
21

D
Douwe Maan 已提交
22
  - page_title "GitLab"
D
Douwe Maan 已提交
23
  %title= page_title
24

D
Dmitriy Zaporozhets 已提交
25
  = favicon_link_tag 'favicon.ico'
26 27 28 29

  = stylesheet_link_tag "application", media: "all"
  = stylesheet_link_tag "print",       media: "print"

D
Dmitriy Zaporozhets 已提交
30
  = javascript_include_tag "application"
31

D
Dmitriy Zaporozhets 已提交
32
  = csrf_meta_tags
33

34
  = include_gon
35

36
  %meta{name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1'}
37
  %meta{name: 'theme-color', content: '#474D57'}
D
Dmitriy Zaporozhets 已提交
38

39 40 41 42 43 44
  -# 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'

45
  -# Windows 8 pinned site tile
D
Douwe Maan 已提交
46
  %meta{name: 'msapplication-TileImage', content: image_path('msapplication-tile.png')}
47
  %meta{name: 'msapplication-TileColor', content: '#30353E'}
48

49
  = yield :meta_tags
50

51
  = render 'layouts/google_analytics' if extra_config.has_key?('google_analytics_id')
S
Sebastian Winkler 已提交
52
  = render 'layouts/piwik' if extra_config.has_key?('piwik_url') && extra_config.has_key?('piwik_site_id')
53
  = render 'layouts/bootlint' if Rails.env.development?
D
Douwe Maan 已提交
54 55

  = render 'layouts/user_styles'