forked from interglobalvision/pindropstudio-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-partners.php
executable file
·56 lines (52 loc) · 1.1 KB
/
page-partners.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
<?php
get_header();
?>
<main id="main-content">
<?php
if( have_posts() ) {
while( have_posts() ) {
the_post();
$partners = get_post_meta($post->ID, '_igv_partners_metabox_group', true);
?>
<article id="page" <?php post_class('container'); ?>>
<div class="grid-row margin-bottom-basic">
<?php render_divider('Partners'); ?>
</div>
<div class="grid-row">
<div class="grid-item item-s-12 item-m-8 offset-m-2 margin-bottom-mid">
<?php the_content(); ?>
</div>
</div>
<?php
if ($partners) {
?>
<div class="grid-row margin-bottom-mid">
<?php render_divider(); ?>
</div>
<div class="grid-row margin-bottom-mid">
<?php
render_partners();
?>
</div>
<div class="grid-row">
<?php render_divider(); ?>
</div>
<?php
}
?>
</article>
<?php
}
} else {
?>
<section id="page" class="container">
<div class="grid-row">
<article class="u-alert grid-item item-s-12"><?php _e('Sorry, no pages matched your criteria'); ?></article>
</div>
</section>
<?php
} ?>
</main>
<?php
get_footer();
?>