-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-projects.php
25 lines (19 loc) · 1.07 KB
/
single-projects.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
<?php get_template_part('head'); ?>
<?php get_template_part('templates/content/project', 'hero'); ?>
<?php if( have_rows('project_story') ): ?>
<?php while ( have_rows('project_story') ) : the_row(); ?>
<?php if( get_row_layout() == 'situation' ): ?>
<?php get_template_part('templates/content/project', 'story-situation'); ?>
<?php elseif( get_row_layout() == 'implementation' ): ?>
<?php get_template_part('templates/content/project', 'story-implementation'); ?>
<?php elseif( get_row_layout() == 'results' ): ?>
<?php get_template_part('templates/content/project', 'story-results'); ?>
<?php elseif( get_row_layout() == 'next_steps' ): ?>
<?php get_template_part('templates/content/project', 'story-next-steps'); ?>
<?php elseif( get_row_layout() == 'quote' ): ?>
<?php get_template_part('templates/content/project', 'story-quote'); ?>
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
<?php get_template_part('templates/content/cta', 'block-global'); ?>
<?php get_template_part('footer'); ?>