-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-innovation-lab.php
62 lines (53 loc) · 2.38 KB
/
page-innovation-lab.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
<?php
/* Template Name: Innovation Lab Page */
?>
<?php get_header(); ?>
<div class="arizona_section inner-section-1 text-center innovation-sec-1">
<div class="col-md-12" >
<img src="<?php echo the_field('innovation_banner_image'); ?>">
<div class="section-align-middle" >
<h5><?php echo the_field('innovation_page_subtitle'); ?></h5>
<h1><?php echo the_field('innovation_page_title'); ?></h1>
</div>
</div>
</div>
<div class="arizona_section innovation-sec-2 padding-top-100 padding-bottom-100">
<div class="container">
<div class="text-center col-md-12 innovation-sec-2-top">
<div class="col" style="background-image: url(<?php echo the_field('innovation_sec2_img1'); ?>)"></div>
<div class="col" style="background-image: url(<?php echo the_field('innovation_sec2_img2'); ?>)"></div>
<div class="col" style="background-image: url(<?php echo the_field('innovation_sec2_img3'); ?>)"></div>
<div class="col" style="background-image: url(<?php echo the_field('innovation_sec2_img4'); ?>)"></div>
<div class="col" style="background-image: url(<?php echo the_field('innovation_sec2_img5'); ?>)"></div>
</div>
<div class="innovation-sec-2-bot">
<?php echo the_field('innovation_sec2_text'); ?>
</div>
</div>
</div>
<div class="arizona_section padding-bottom-100 innovation-sec-3 text-center">
<div class="container">
<h2><?php echo the_field('innovation_sec3_heading'); ?></h2>
<?php
$link = get_field('innovation_sec3_btn');
if( $link ):
$link_url = $link['url'];
$link_title = $link['title'];
$link_target = $link['target'] ? $link['target'] : '_self';
?>
<a class="arizon-button button" href="<?php echo esc_url( $link_url ); ?>" target="<?php echo esc_attr( $link_target ); ?>"><?php echo esc_html( $link_title ); ?></a>
<?php endif; ?>
</div>
</div>
<div class="arizona_section innovation-sec-4 padding-bottom-100">
<div class="container">
<div class="col-md-12 innovation-sec-4-left">
<h2><?php echo the_field('innovation_sec4_heading'); ?></h2>
<?php gravity_form( 1, false, false, false, '', false ); ?>
</div>
<div class="innovation-sec-4-right">
<img src="<?php echo the_field('innovation_sec4_image'); ?>">
</div>
</div>
</div>
<?php get_footer(); ?>