-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-home.php
53 lines (42 loc) · 2.08 KB
/
template-home.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
<?php
/*
Template Name: Home
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'inc/slider' ); ?>
<div class="grid-feature">
<div class="grid-feature-item grid-feature-item-gutter">
<a href="<?php the_field('main_zone_left_link'); ?>">
<img src="<?php the_field('main_zone_left_image'); ?>" alt="<?php the_field('main_zone_left_text'); ?>" class="icon-lupulo">
<span class="grid-feature-title-content"><?php the_field('main_zone_left_title'); ?></span>
<span class="grid-feature-sub-title-content"><?php the_field('main_zone_left_text'); ?></span>
</a>
</div><!--
--><div class="grid-feature-item grid-feature-item-gutter">
<a href="<?php the_field('main_zone_center_link'); ?>">
<img src="<?php the_field('main_zone_center_image'); ?>" alt="<?php the_field('main_zone_center_text'); ?>" class="icon-lupulo">
<span class="grid-feature-title-content"><?php the_field('main_zone_center_title'); ?></span>
<span class="grid-feature-sub-title-content"><?php the_field('main_zone_center_text'); ?></span>
</a>
</div><!--
--><div class="grid-feature-item">
<a href="<?php the_field('main_zone_right_link'); ?>">
<img src="<?php the_field('main_zone_right_image'); ?>" alt="<?php the_field('main_zone_right_text'); ?>" class="icon-lupulo">
<span class="grid-feature-title-content"><?php the_field('main_zone_right_title'); ?></span>
<span class="grid-feature-sub-title-content"><?php the_field('main_zone_right_text'); ?></span>
</a>
</div>
</div>
<div class="page-header page-header-home">
<h2 class="page-title"><?php _e( 'Best Sellers', 'nsi' ); ?></h2>
<img src="<?php bloginfo('template_directory'); ?>/img/bandeau-gris.svg" alt="bandeau gris" class="page-title-background">
</div><!-- .page-header -->
<?php get_template_part( 'inc/best-sellers' ); ?>
<?php endwhile; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>