-
Notifications
You must be signed in to change notification settings - Fork 34
/
page.php
25 lines (19 loc) · 939 Bytes
/
page.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
<?php $this->need('header.php'); ?>
<div id="main">
<div id="page-title-bg">
<div class="page-title-inner">
<h1 class="page-title"><span class="cross"></span><?php $this->title() ?></h1>
</div>
</div><!--=E #page-title-bg -->
<div id="container" class="clearfix">
<div id="content">
<article class="post">
<!--<h1 class="post-title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>-->
<?php $this->content(); ?>
</article><!--=E .post -->
<?php $this->need('comments.php'); ?>
</div><!--=E #content -->
<?php $this->need('sidebar.php'); ?>
</div><!--=E #container -->
</div><!--=E #main -->
<?php $this->need('footer.php'); ?>