pmr_app/app/views/layouts/public.html.haml
Nicolas Bally 05c73546a2 slider
2016-02-11 23:06:23 +01:00

134 lines
4.3 KiB
Plaintext

-@lang = @lang || LangSite.first
-if !@facebook_img or @facebook_img == ""
-@facebook_img= "/public_medias/image_file/file/280/large_medium_shutterstock_64985671_0__-_copie.jpg"
!!!
-if @description and @description == ""
- @description = ""
%html{:lang => "fr", "xml:lang" => "fr", :xmlns => "http://www.w3.org/1999/xhtml"}
%head
%title=@title.to_s+" "
%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 }
= javascript_include_tag "public"
= csrf_meta_tag
=render :partial => "public/shared/ga"
= stylesheet_link_tag 'public'
= stylesheet_link_tag '/fonts/Stylograph/stylesheet.css'
<script src="https://use.typekit.net/hia2kxp.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
=javascript_include_tag "http://maps.google.com/maps/api/js?sensor=false&region=FR"
%body
-if flash[:error] or flash[:notice] or flash[:alert]
.flash
=flash[:error]
=flash[:notice]
=flash[:alert]
.top
=link_to image_tag("/logo.png", :id => "logo"), "/"+@lang.slug+"/index.html"
.menu
%ul
-MenuItem.where(:parent_id => nil, :menu_id => Menu.first.id).order(:position).each do |menu_item|
-description = ""
-description = menu_item.menu_content.description if menu_item.menu_content and menu_item.menu_content_type == "Page"
%li
=menu_item_link(menu_item)
#main{:class => (@menu_item.slug if @menu_item)}
-if @menu_item and @menu_item.id == 1
#home_slider
.flexslider
%ul.slides
-@home_slider = HomeSlider.find_by_slug("home")
-@date = Time.now
-if @home_slider
-@home_slides_simu = @home_slider.home_slider_slides.where(:enabled => true)
-@home_slides_simu = @home_slides_simu.where("start_at IS NULL or start_at <= ?",@date)
-@home_slides_simu = @home_slides_simu.where("end_at IS NULL or end_at >= ?",@date)
-@home_slides_simu = @home_slides_simu.order(:position)
-@home_slides_simu.each do |home_slider_slide|
-if home_slider_slide.image_file
%li
-if home_slider_slide.url?
=link_to home_slider_slide.url do
.inner{:style => "background-image:url('#{home_slider_slide.image_file.file.url}');"}
-else
.inner{:style => "background-image:url('#{home_slider_slide.image_file.file.url}');"}
:javascript
$(window).load(function(){
$('.flexslider').flexslider({
animation: "slide",
slideshowSpeed: 4500,
animationSpeed: 2000,
start: function(slider){
$('body').removeClass('loading');
}
});
});
-@articles = Article.before(Date.today).recents.joins(:lang_articles).where("lang_articles.enabled = 1 and lang_articles.lang_site_id = 1").limit(2)
.more_articles
-i = 0
-@articles.each do |article|
-i = i +1
=render :partial => "public/articles/article_x2", :object => article, :as => :article, :locals => {:i => i}
.clear
=yield
.clear
.socials_links
.top_link
=i(:"arrow-circle-o-up")
=link_to "https://www.facebook.com/sharer/sharer.php?u=#{request.url}", :target => "_blank", :class => "link facebook" do
=i(:"facebook")
=link_to "https://twitter.com/intent/tweet?url=#{request.url}&via=&text="+CGI::escape(@title.to_s), :target => "_blank", :class => "link twitter" do
=i(:"twitter")
.bottom
=link_to image_tag("/logo-w.png", :class => "logo"),"/"