29 lines
830 B
Plaintext
29 lines
830 B
Plaintext
%h2 Actualité
|
|
%h3 Exposition à la bibliothèque municipale de Réaumont
|
|
%p A partir du 11 mars 2013, visible durant les permanences (les mardi de 16h00 à 18h30 et les samedi de 10h00 à 12h00).
|
|
Inauguration le samedi 23 mars à 11h.
|
|
%br
|
|
%h2 Dernières images
|
|
|
|
#index_images
|
|
|
|
|
|
|
|
|
|
-@index_images.each do |img|
|
|
=link_to image_tag(img.photo.square.url), portfolio_path(:id => img.portfolios.first.slug, :page => img.page(img.portfolios.first))
|
|
%p{:style => "clear:both;height:2px;"}
|
|
:javascript
|
|
function size_index_images(){
|
|
width = $('#index_images').width();
|
|
columns = Math.ceil(width/200 * 1);
|
|
max_width = Math.floor((width-(columns*8))/columns);
|
|
|
|
$('#index_images img').css("width", max_width+"px");
|
|
};
|
|
size_index_images();
|
|
|
|
$(window).bind('resize',function(){
|
|
size_index_images();
|
|
|
|
}); |