-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-team.php
More file actions
24 lines (24 loc) · 905 Bytes
/
single-team.php
File metadata and controls
24 lines (24 loc) · 905 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
<?php // Exit if accessed directly
if (!defined('ABSPATH')) {echo '<h1>Forbidden</h1>'; exit();} get_header();
global $fi_print_options;
?>
<section class="single-project">
<div class="container">
<div class="col-md-6">
<?php fi_print_related_media(550,550);?>
</div>
<div class="col-md-4">
<?php fi_print_related_team_meta();?>
</div>
<div class="col-md-12 next-prev text-center clearfix">
<nav>
<ul class="pager">
<li class="pull-left"><?php previous_post_link('%link','<i class="fa fa-angle-left"></i>');?></li>
<li class="pull-right"><?php next_post_link('%link','<i class="fa fa-angle-right"></i>');?></li>
</ul>
</nav>
</div><!-- end next prev -->
</div>
<div class="line-sep"></div>
</section>
<?php get_footer(); ?>