-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-team_members.php
More file actions
35 lines (26 loc) · 855 Bytes
/
Copy pathsingle-team_members.php
File metadata and controls
35 lines (26 loc) · 855 Bytes
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
<?php
get_header();
$team_name = get_field('name');
$team_title = get_field('title');
$team_story = get_field('story');
$team_image = wp_get_attachment_image_src( get_field('image') );
?>
<main id="main" class="cariloop">
<section class="wrapper pb-50 pt-30">
<a class="back-to-link" href="/about-us/our-teams">< Back to Our Teams</a>
</section>
<section class="post-wrapper team-post-wrapper flex gap-40">
<img class="team-img" src="<?php echo $team_image[0]; ?>">
<div class="flex-1">
<div class="pt-70">
<h1><?php echo $team_name; ?></h1>
<p class="p-0"><i><?php echo $team_title; ?></i></p>
</div>
<hr class="orange my-40">
<div class="content">
<?php echo $team_story; ?>
</div>
</div>
</section>
</main>
<?php get_footer(); ?>