82 lines
3.0 KiB
Plaintext
82 lines
3.0 KiB
Plaintext
#slider{:style => "width:979px;height:309px;"}
|
|
|
|
|
|
%ul=render :partial => "slide", :collection => @home.slider.slides
|
|
|
|
.right-arrow
|
|
=image_tag "front/fleche-droite.png"
|
|
.left-arrow
|
|
=image_tag "front/fleche-gauche.png"
|
|
|
|
|
|
#main
|
|
.column_1.column
|
|
=render :partial => "public/shared/contact_block"
|
|
.column_2.column
|
|
-block = @home.home_blocks.find_by_slug("left_block")
|
|
.title=link_to block.title, (block.cible ? block.cible.url : "")
|
|
.desc=link_to simple_format(block.description), (block.cible ? block.cible.url : "")
|
|
|
|
.cible
|
|
=link_to image_tag('front/en-savoir-plus-marron.png'), (block.cible ? block.cible.url : "")
|
|
|
|
|
|
|
|
.column_3.column
|
|
-block = @home.home_blocks.find_by_slug("right_block")
|
|
.title=link_to block.title, (block.cible ? block.cible.url : "")
|
|
.desc=link_to simple_format(block.description), (block.cible ? block.cible.url : "")
|
|
|
|
.cible
|
|
=link_to image_tag('front/en-savoir-plus-marron.png'), (block.cible ? block.cible.url : "")
|
|
|
|
.clear
|
|
#home_promotions
|
|
.column_1.column
|
|
|
|
-if @home.promotion_1
|
|
-promotion = @home.promotion_1
|
|
|
|
|
|
-if promotion.month.beginning_of_month == Date.today.beginning_of_month
|
|
.label=link_to image_tag('front/en-cours.png'), "/pages/promotions.html"
|
|
-elsif promotion.month.beginning_of_month == Date.today.next_month.beginning_of_month
|
|
.label=link_to image_tag('front/a-venir.png'), "/pages/promotions.html"
|
|
.img
|
|
=link_to image_tag(promotion.image_file.file.large.medium.small.thumb.url), "/pages/promotions.html" if promotion.image_file
|
|
.title
|
|
=link_to promotion.title, "/pages/promotions.html"
|
|
.description
|
|
=link_to simple_format(promotion.description), "/pages/promotions.html"
|
|
.column_2.column
|
|
-if @home.promotion_2
|
|
-promotion = @home.promotion_2
|
|
|
|
|
|
-if promotion.month.beginning_of_month == Date.today.beginning_of_month
|
|
.label=link_to image_tag('front/en-cours.png'), "/pages/promotions.html"
|
|
-elsif promotion.month.beginning_of_month == Date.today.next_month.beginning_of_month
|
|
.label=link_to image_tag('front/a-venir.png'), "/pages/promotions.html"
|
|
.img
|
|
=link_to image_tag(promotion.image_file.file.large.medium.small.thumb.url), "/pages/promotions.html" if promotion.image_file
|
|
.title
|
|
=link_to promotion.title, "/pages/promotions.html"
|
|
.description
|
|
=link_to simple_format(promotion.description), "/pages/promotions.html"
|
|
.column_3.column
|
|
-if @home.promotion_3
|
|
-promotion = @home.promotion_3
|
|
|
|
|
|
-if promotion.month.beginning_of_month == Date.today.beginning_of_month
|
|
.label=link_to image_tag('front/en-cours.png'), "/pages/promotions.html"
|
|
-elsif promotion.month.beginning_of_month == Date.today.next_month.beginning_of_month
|
|
.label=link_to image_tag('front/a-venir.png'), "/pages/promotions.html"
|
|
.img
|
|
=link_to image_tag(promotion.image_file.file.large.medium.small.thumb.url), "/pages/promotions.html" if promotion.image_file
|
|
.title
|
|
=link_to promotion.title, "/pages/promotions.html"
|
|
.description
|
|
=link_to simple_format(promotion.description), "/pages/promotions.html"
|
|
|
|
.clear |