115 lines
4.4 KiB
Plaintext
115 lines
4.4 KiB
Plaintext
-@partenaire = true
|
|
|
|
- @social_url = "http://le-petit-gravier.com"
|
|
-@gravier_host = "http://le-petit-gravier.com"
|
|
-@menu_shadow=true
|
|
-@lang = @lang || LangSite.first
|
|
-if !@facebook_img or @facebook_img == ""
|
|
-@facebook_img= "/reseaux.png"
|
|
!!!
|
|
- @description = ""
|
|
-@title = ""
|
|
|
|
%html{:lang => "fr", "xml:lang" => "fr", :xmlns => "http://www.w3.org/1999/xhtml"}
|
|
%head
|
|
-@title = strip_tags(@title.to_s)
|
|
%title=@title.to_s+"Le Petit Gravier"
|
|
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
|
|
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
|
|
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
|
|
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
|
|
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
|
|
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
|
|
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
|
|
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
|
|
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
|
|
<link rel="icon" type="image/png" href="/favicon-194x194.png" sizes="194x194">
|
|
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
|
<link rel="icon" type="image/png" href="/android-chrome-192x192.png" sizes="192x192">
|
|
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
|
|
<link rel="manifest" href="/manifest.json">
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
%meta{:name=>"viewport", :content=>"width=device-width,initial-scale=1"}
|
|
%meta{ :"http-equiv" => "Content-Type", :content => "text/html; charset=utf-8" }
|
|
%meta{ :"name" => "Description", :content => @description }
|
|
%meta{ :"name" => "Keywords", :content => @keywords }
|
|
=raw '<meta property="og:title" content="'+@title.to_s+'" />'
|
|
=raw '<meta property="og:description" content="'+@description.to_s+'" />'
|
|
=raw '<meta property="og:url" content="'+@social_url+'" />'
|
|
|
|
|
|
=raw '<meta property="twitter:description" content="'+((@description and @description != "") ? @description : "En savoir plus :").to_s+'"/>'
|
|
=raw '<meta property="twitter:title" content="'+@title.to_s+'"/>'
|
|
=raw '<meta property="twitter:site" content="@"/>'
|
|
=raw '<meta property="twitter:creator" content="@"/>'
|
|
=raw '<meta property="twitter:url" content="'+@social_url+'"/>'
|
|
|
|
|
|
-if @facebook_img
|
|
=raw '<meta property="og:image" content="https://le-petit-gravier.com'+@facebook_img.to_s+'"/>'
|
|
=raw '<link rel="image_src" href="https://le-petit-gravier.com'+@facebook_img.to_s+'"/>'
|
|
|
|
=raw '<meta name="twitter:card" content="summary_large_image">'
|
|
|
|
|
|
|
|
|
|
=raw '<meta property="twitter:image" content="https://le-petit-gravier.com'+@facebook_img.to_s+'"/>'
|
|
|
|
|
|
|
|
|
|
-@img_size = FastImage.size('https://le-petit-gravier.com'+@facebook_img.to_s)
|
|
|
|
-if @img_size and @img_size.size > 0
|
|
=raw '<meta property="og:image:width" content="'+@img_size[0].to_s+'"/>'
|
|
=raw '<meta property="og:image:height" content="'+@img_size[1].to_s+'"/>'
|
|
|
|
= javascript_include_tag "coming"
|
|
|
|
= csrf_meta_tag
|
|
=#render :partial => "public/shared/ga"
|
|
|
|
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700" rel="stylesheet">
|
|
|
|
|
|
|
|
%body{:style => "background-image:url('/backgroundold.jpg');"}
|
|
%div{:style => "background-image:url('/background.jpg');"}
|
|
:scss
|
|
body{
|
|
|
|
}
|
|
|
|
div{
|
|
position:absolute;
|
|
top:0;
|
|
left:0;
|
|
right:0;
|
|
bottom:0;
|
|
background:#888888 center center no-repeat;
|
|
background-size:100%;
|
|
background-size:cover;
|
|
padding:0;
|
|
margin:0;
|
|
height:100%;
|
|
}
|
|
|
|
#logo{
|
|
width:100%;
|
|
max-width:230px;
|
|
|
|
margin:auto;
|
|
display:block;
|
|
opacity:0.8;
|
|
}
|
|
|
|
=image_tag "/coming_logo.png", :id => "logo", :data => {:ratio => 0.85652174 }
|
|
|