-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-portfolio.php
64 lines (34 loc) · 1.51 KB
/
single-portfolio.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
57
58
59
60
61
62
63
64
<?php get_header(); ?>
<div class="mask"></div>
<div class="container-fluid single-header">
<div class="page-header">
<div class="row">
<div class="col-xs-12">
<h1><?php single_post_title(); ?></h1>
<h2 class="lead">Some lead text going on. </h2>
<p> <a href="<?php bloginfo('url'); ?>">Home</a> > <a href="<?php bloginfo('url'); ?>/blog/portfolio/laptops/">Ian Berg</a>
</div>
</div>
</div>
</div>
<div class="container content">
<div class="col-xs-12 prev-next">
<?php next_post_link( '%link', '<span class="glyphicon glyphicon-circle-arrow-left"></span>' ); ?>
<a href="<?php bloginfo('url'); ?>#portfolio" data-toggle="tooltip" data-placement="bottom" title="Back to Portfolio Menu"><span class="glyphicon glyphicon-th"></span></a>
<?php previous_post_link( '%link', '<span class="glyphicon glyphicon-circle-arrow-right"></span>' ); ?>
</div>
</div>
<div class="container content">
<div class="row">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="col-sm-12">
<?php the_content(); ?>
</div>
<?php endwhile; else: ?>
<div class="page-header">
<h1>Oh no!</h1>
</div>
<p>No content is appearing for this page!</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>