forked from studieverenigingid/IOB-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-contact.php
50 lines (40 loc) · 1.01 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
<?php
/**
* Template Name: Contact Page
*/
get_header();
?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<main class="fair__top">
<h1 class="fair__title"><span><?php the_title(); ?></span></h1>
</main>
<div class="section">
<div class="section__wrapper">
<p class="fair__descr"><?php echo get_the_formatted_content(); ?></p>
<?php include 'inc/social-buttons.php';?>
</div>
</div>
<!-- ********* -->
<!-- COMMITTEE -->
<!-- ********* -->
<?php if(get_field('committee_image') || get_field('committee_info')) {?>
<div class="section__title__wrapper">
<h2 class="section__title"><span>The Committee</span></h2>
</div>
<div class="section">
<div class="section__wrapper">
<?php
$image = get_field('committee_image');
$size = 'large';
if( $image ) {
echo wp_get_attachment_image( $image, $size );
}
?>
<?= get_field('committee_info'); ?>
</div>
</div>
<?php } ?>
<?php endwhile; endif; ?>
<?php
get_footer();
?>