Explorez nos réalisations

Un projet d’infrastructure, d’ouvrage d’art ou d’équipement métallique ? Notre équipe vous répond rapidement et vous accompagne de l’étude à la fabrication.

Realisation-S8-Gissey-le-Vieil (1)

Realisation S8 Gissey le Vieil

OLYMPUS DIGITAL CAMERA

Olympus Digital Camera

Ecran-lbe (1)

Ecran-lbe

Realisation-Musigny-2 (1)

Realisation-Musigny

20210820_091404 (1)

Voie cyclable

Realisation-A43-Nouvetra-GDC-de-Service-scaled (1)

Realisation-A43-Nouvetra-GDC-de-Service-

Realisation-Albertville-Pont-Albertin-scaled (1)

Réalisation Albertville Pont Albertin scaled

SAMSUNG

Samsung

gardecorps_doublefonctionmini1

Garde-corps double fonction

/** * Shortcode: [gallery_listing_paginated per_page="12" cols="2"] */ add_shortcode('gallery_listing_paginated', function($atts) { $atts = shortcode_atts([ 'per_page' => 12, 'cols' => 2, ], $atts, 'gallery_listing_paginated'); $paged = max(1, (int) get_query_var('paged')); $perPage = max(1, (int) $atts['per_page']); $cols = max(1, (int) $atts['cols']); $q = new WP_Query([ 'post_type' => 'attachment', 'post_status' => 'inherit', 'post_mime_type' => 'image', 'posts_per_page' => $perPage, 'paged' => $paged, 'orderby' => 'date', 'order' => 'DESC', ]); ob_start(); if ($q->have_posts()) : ?>
have_posts()) : $q->the_post(); $i++; $full = wp_get_attachment_url(get_the_ID()); $img = wp_get_attachment_image(get_the_ID(), 'large', false, [ 'class' => 'glp-img', 'loading' => 'lazy', ]); $title = get_the_title(); ?>
Aucune image trouvée.

'; endif; return ob_get_clean(); });