-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstatic.html.php
More file actions
30 lines (28 loc) · 1.1 KB
/
Copy pathstatic.html.php
File metadata and controls
30 lines (28 loc) · 1.1 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
27
28
29
30
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<!-- Post Content -->
<article>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<?php if (login()) { echo tab($p); } ?>
<?php echo $p->body;?>
<?php if (!empty($next) || !empty($prev)): ?>
<hr>
<!-- Pager -->
<ul class="pager">
<?php if (!empty($next)): ?>
<li class="next pull-left">
<a href="<?php echo($next['url']); ?>" rel="next">← <?php echo($next['title']); ?></a>
</li>
<?php endif;?>
<?php if (!empty($prev)): ?>
<li class="prev pull-right">
<a href="<?php echo($prev['url']); ?>" rel="prev"><?php echo($prev['title']); ?> →</a>
</li>
<?php endif;?>
</ul>
<?php endif; ?>
</div>
</div>
</div>
</article>