-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-landing.php
40 lines (36 loc) · 1.33 KB
/
page-landing.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
<?php
/*
Template Name: Landing Page
*/
get_header(); ?>
<?php /* Start loop */ ?>
<?php while (have_posts()) : the_post(); ?>
<div class="row">
<div class="large-12 columns">
<ul class="example-orbit" data-orbit>
<li>
<img src="<?php echo get_stylesheet_directory_uri() ; ?>/assets/img/photo_groupe.png" />
</li>
<li>
<img src="<?php echo get_stylesheet_directory_uri() ; ?>/assets/img/photo_groupe2.jpg" />
</li>
</ul>
</div>
</div>
<hr/>
<div class="row text-center">
<div class="large-4 columns">
<img class="landing-logo" src="<?php echo get_stylesheet_directory_uri() ; ?>/css/svgs/info.svg"/>
<?php the_field("section_gauche"); ?>
</div>
<div class="large-4 columns">
<img class="landing-logo" src="<?php echo get_stylesheet_directory_uri() ; ?>/css/svgs/ap-engrenages.svg"/>
<?php the_field("section_milieu"); ?>
</div>
<div class="large-4 columns">
<img class="landing-logo" src="<?php echo get_stylesheet_directory_uri() ; ?>/css/svgs/ap-handshake.svg"/>
<?php the_field("section_droite"); ?>
</div>
</div>
<?php endwhile; // End the loop ?>
<?php get_footer(); ?>