-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage-savoirfaire.php
69 lines (59 loc) · 2.39 KB
/
page-savoirfaire.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php get_header(); ?>
<section class="wrap_flex">
<h1 class="h1_flex"><?php $titre = get_field('titre'); echo $titre; ?></h1>
<div class="underline_flex_know-how"></div>
<br/>
<div class="presentation">
<p class="intro_text"><?php $intro = get_field('intro'); echo $intro; ?></p>
</div>
<div class="oldb">
<div class="carrousel_sf_h">
<!-- Flickity HTML init -->
<div class="carousel" data-flickity='{ "lazyLoad": true }'>
<?php
$images = get_field('premier_carroussel');
?>
<?php foreach ($images as $image): ?>
<div class="carousel-cell">
<img class="carousel-cell-image" src="<?php echo($image['images_1']['url']); ?>"/>
<p class="legend"><?php echo($image['legende_1']); ?></p>
</div>
<?php endforeach; ?>
</div>
</div>
<div class="frame_assembly_h">
<img class="cadre_l" src="<?php echo get_template_directory_uri();?>/images/cadre_gauche.svg">
<div class="text">
<h2 class="h2_flex"><?php $titre1 = get_field('titre1'); echo $titre1; ?></h2>
<h3 class="h3_flex"><?php $stitre1 = get_field('stitre1'); echo $stitre1; ?></h3> <!--sous-titre ex : gérant de la maçonnerie-->
<p class="para"><?php $texte1 = get_field('text1'); echo $texte1; ?></p>
</div>
</div>
</div>
<div class="oldb">
<div class="carrousel_sf_l"><!--order : 2-->
<!-- Flickity HTML init -->
<div class="carousel" data-flickity='{ "lazyLoad": true }'>
<?php
$images = get_field('deuxieme_carroussel');
?>
<?php foreach ($images as $image): ?>
<div class="carousel-cell">
<img class="carousel-cell-image" src="<?php echo($image['images_2']['url']); ?>"/>
<p class="legend"><?php echo($image['legende_2']); ?></p>
</div>
<?php endforeach; ?>
</div>
</div>
<div class="frame_assembly_l"><!--order : 1-->
<img class="cadre_r" src="<?php echo get_template_directory_uri();?>/images/cadre_droit.svg">
<div class="text2" >
<h2 class="h2_flex"><?php $titre2 = get_field('titre2'); echo $titre2; ?></h2>
<h3 class="h3_flex"><?php $stitre2 = get_field('stitre2'); echo $stitre2; ?></h3>
<p class="para"><?php $texte2 = get_field('text2'); echo $texte2; ?></p>
</div>
</div>
</div>
</section>
</body>
<?php get_footer(); ?>