This repository was archived by the owner on Jan 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtemplate-get-involved.php
More file actions
executable file
·63 lines (53 loc) · 2.09 KB
/
template-get-involved.php
File metadata and controls
executable file
·63 lines (53 loc) · 2.09 KB
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
<?php /* Template Name: Get Involved */ get_header(); ?>
<main role="main">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<?php if (have_posts()): while (have_posts()) : the_post(); ?>
<?php edit_post_link(); ?>
<!-- PAGE FEATURE ======= -->
<!-- ==================== -->
<section class="page-feature">
<div class="spot-illustration">
<img src="<?php echo get_template_directory_uri(); ?>/assets/img/illustration-get-involved.svg">
</div>
<h1 class="narrative-title">
<?php the_field('narrative_title'); ?>
</h1>
<div class="narrative-summary">
<?php the_content(); ?>
</div>
</section>
<!-- PAGE COLUMNS ======= -->
<!-- ==================== -->
<section class="narrative-columns">
<div class="row">
<div class="col-md-6 column-one">
<h3 class="column-title">
<span class="column-icon"></span>
<?php the_field('narrative_column_one_title'); ?>
</h3>
<div class="column-content">
<?php the_field('narrative_column_one_content'); ?>
</div>
</div>
<div class="col-md-6 column-two">
<h3 class="column-title">
<span class="column-icon"></span>
<?php the_field('narrative_column_two_title'); ?>
</h3>
<div class="column-content">
<?php the_field('narrative_column_two_content'); ?>
</div>
</div>
</div>
</section>
<?php endwhile; ?>
<?php endif; ?>
<!-- JOIN THE CONVERSATION ======= -->
<!-- ============================= -->
<?php get_template_part( 'includes/join-conversation' ); ?>
</div>
</div>
</main>
<?php get_footer(); ?>