-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.single.php
47 lines (46 loc) · 1.47 KB
/
page.single.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
<?php namespace Habari; ?>
<?php $theme->display('header'); ?>
<body class="right-sidebar">
<div id="header-wrapper">
<div class="container">
<?php $theme->display('nav'); ?>
</div>
</div>
<div id="main-wrapper">
<div class="container">
<div class="row">
<div class="12u">
<!-- Portfolio -->
<section>
<div>
<div class="row">
<div class="8u skel-cell-mainContent">
<!-- Content -->
<article class="box is-post">
<span class="image image-full"><img src="<?php Site::out_url('theme'); ?>/images/pic01.jpg" alt=""></span>
<header>
<h2><?php echo $post->title_out; ?></h2>
</header>
<?php echo $post->content_out; ?>
</article>
</div>
<div class="4u">
<section class="box">
<p><strong>Written on <?php echo $post->pubdate->out('M, d Y'); ?> by <?php echo $post->author->displayname; ?> and tagged with <?php echo $theme->t_and_l($post->tags); ?>.</strong></p>
<h3>Recent Posts</h3>
<br>
<ul class="divided">
<?php foreach( $theme->recent($post->id) as $recent ) { ?>
<li><a href="<?php echo $recent->permalink; ?>" title="<?php echo $recent->title_out; ?>"><?php echo $recent->title_out; ?></a></li>
<?php } ?>
</ul>
</section>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<?php $theme->display('footer'); ?>