-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.php
31 lines (31 loc) · 1.1 KB
/
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
26
27
28
29
30
31
<?php
$this->need('header.php');
?>
<div id="page-wrap">
<div id="main-content" style="display: block;">
<div id="guts">
<div class="row tables">
<div class="container">
<div class="post">
<div class="col s12 wow bounceInUp">
<div class="card" style="color:#000;width:100%;">
<div class="card-content white-text">
<span class="card-title hide-on-large-only"><a href="<?php $this->permalink() ?>"><?php $this->title();?></a></span>
<div class="card-content" style="color:#000;font-size:18px;">
<?php $this->content(); ?>
</div>
</div>
<div class="card-action my-tags">
<a href="<?php $this->author->permalink(); ?>"><?php $this->author(); ?></a>
<a><?php $this->date('F j, Y'); ?></a>
<a href="<?php $this->permalink() ?>#comments"><span class="ds-thread-count" data-thread-key="<?php echo $this->cid;?>" data-count-type="comments"></span></a>
</div>
</div>
</div>
<?php $this->need('comments.php');?>
</div>
</div>
</div>
</div>
</div>
<?php $this->need('footer.php');?>