-
Notifications
You must be signed in to change notification settings - Fork 7
/
page-contact.php
70 lines (53 loc) · 1.65 KB
/
page-contact.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
70
<?php
/* Template Name: Contact Page */
get_header(); ?>
<div id="<?php echo get_field('main_id'); ?>" class="page-halfbanner page-contact">
<?php get_template_part('inc/halfbanner'); ?>
<section class="block bg-white block-2col_grid">
<div class="container block-pad-v">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="container-xs fade-in-left">
<div class="richtext">
<?php the_content(); ?>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="row text-center grid-item-container">
<?php
while( have_rows('social_media_links') ): the_row(); ?>
<div class="col-lg-3 col-6">
<a href="<?php echo get_sub_field('link_url') ?>" target="_blank" class="btn btn-hover btn-hovershadow">
<div class="image">
<?php if (get_sub_field('link_icon')) {?>
<img src="<?php echo get_sub_field('link_icon') ?>" alt class="img-fluid socialicons">
<?php } ?>
</div>
<span class="text-blue">
<?php echo get_sub_field('link_name') ?>
</span>
</a>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
</div>
</section>
<section class="block bg-light block-newsletter">
<div class="container block-pad-v">
<div class="row align-items-center">
<div class="col-lg-5">
<h3 class="my-lg-0 mb-3"><strong><?php echo get_field('newsletter_text') ?></strong></h3>
</div>
<div class="col-lg-7">
<div class="form px-lg-3 px-3">
<?php get_template_part('inc/newsletterform'); ?>
</div>
</div>
</div>
</div>
</section>
</div>
<?php get_footer(); ?>