-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-home.php
43 lines (37 loc) · 1.28 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
<?php
/**
* Template Name: Home
*
* @package CCW_Countries
* @link https://codex.wordpress.org/Template_Hierarchy
*/
get_header(); ?>
<?php get_template_part('template-parts/page', 'header'); ?>
<div class="c-page-block">
<div class="c-grid c-grid--h-center">
<div class="c-col--8 u-text--center">
<?php the_field('primary_text'); ?>
</div>
</div>
</div>
<div class="c-page-block c-page-block--action-block">
<div class="c-grid c-grid--h-center">
<div class="c-col--8 u-text--center">
<?php the_field('driver_text'); ?>
<p><a class="c-button c-button--action-button" href="<?php the_field('driver_link'); ?>"><?php the_field('driver_link_text'); ?></a></p>
</div>
</div>
</div>
<div class="c-page-block">
<div class="c-grid">
<div class="c-col c-col--6">
<?php the_field('secondary_text'); ?>
<a class="c-button c-button--hollow c-button--green" href="<?php the_field('secondary_link'); ?>"><?php the_field('secondary_link_text'); ?></a>
</div>
<div class="c-col c-col--6">
<img width="100%" src="<?php bloginfo('template_directory'); ?>/images/placeholder-wide.png">
</div>
</div>
</div>
<?php
get_footer();