-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-portfolio.php
More file actions
26 lines (26 loc) · 1.06 KB
/
single-portfolio.php
File metadata and controls
26 lines (26 loc) · 1.06 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
<?php // Exit if accessed directly
if (!defined('ABSPATH')) {echo '<h1>Forbidden</h1>'; exit();} get_header(); ?>
<?php global $fi_print_options;?>
<section class="single-project">
<div class="container">
<div class="col-md-8">
<?php fi_print_related_media(730,343);?>
</div>
<div class="col-md-4">
<?php fi_print_related_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 if(isset($fi_print_options['portfolio_related']) && $fi_print_options['portfolio_related']==1):?>
<?php get_template_part('partials/portfolio-related');?>
<?php endif;?>
<?php get_footer(); ?>