debian-mirror-gitlab/app/views/layouts/_head.html.haml

61 lines
2.5 KiB
Text
Raw Normal View History

- page_description brand_title unless page_description
- site_name = "GitLab"
%head{prefix: "og: http://ogp.me/ns#"}
2014-09-02 18:07:02 +05:30
%meta{charset: "utf-8"}
2015-09-11 14:41:01 +05:30
%meta{'http-equiv' => 'X-UA-Compatible', content: 'IE=edge'}
2014-09-02 18:07:02 +05:30
-# Open Graph - http://ogp.me/
%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}
%meta{property: 'og:url', content: request.base_url + request.fullpath}
-# Twitter Card - https://dev.twitter.com/cards/types/summary
%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}
= page_card_meta_tags
%title= page_title(site_name)
%meta{name: "description", content: page_description}
2015-09-11 14:41:01 +05:30
2014-09-02 18:07:02 +05:30
= favicon_link_tag 'favicon.ico'
2015-09-11 14:41:01 +05:30
= stylesheet_link_tag "application", media: "all"
= stylesheet_link_tag "print", media: "print"
2014-09-02 18:07:02 +05:30
= javascript_include_tag "application"
2015-09-11 14:41:01 +05:30
2016-08-24 12:49:21 +05:30
- if content_for?(:page_specific_javascripts)
= yield :page_specific_javascripts
2015-09-11 14:41:01 +05:30
= csrf_meta_tags
2015-09-11 14:41:01 +05:30
- unless browser.safari?
%meta{name: 'referrer', content: 'origin-when-cross-origin'}
2015-04-26 12:48: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
= 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-06-02 11:05:42 +05:30
%link{rel: 'mask-icon', href: image_path('logo.svg'), color: 'rgb(226, 67, 41)'}
2015-09-11 14:41:01 +05:30
-# Windows 8 pinned site tile
%meta{name: 'msapplication-TileImage', content: image_path('msapplication-tile.png')}
%meta{name: 'msapplication-TileColor', content: '#30353E'}
= yield :meta_tags
2014-09-02 18:07:02 +05:30
= render 'layouts/google_analytics' if extra_config.has_key?('google_analytics_id')
= render 'layouts/piwik' if extra_config.has_key?('piwik_url') && extra_config.has_key?('piwik_site_id')
2015-09-11 14:41:01 +05:30
= render 'layouts/bootlint' if Rails.env.development?
2014-09-02 18:07:02 +05:30
2015-09-11 14:41:01 +05:30
= render 'layouts/user_styles'