forked from ihewro/typecho-theme-leaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
48 lines (36 loc) · 1012 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<div id="pjax-container">
<style>
#screen{
display:none;
}
</style>
<div id="screen">
<div id="mark">
<div class="layer" data-depth="0.20">
<img id="cover" />
</div>
</div>
</div>
<div class="footer-clear post chinese">
<!-- post header -->
<div class="post-header">
<h1 class="post-title"><?php $this->title() ?></h1>
<p class="post-date" datetime="<?php $this->date('c'); ?>"><?php $this->date('F jS , Y'); ?></p>
<p class="post-author"><a href="<?php $this->author->url(); ?>" target="_blank" rel="noopener"><?php $this->author(); ?></a></p>
</div>
<!-- post content -->
<div class="post-content">
<?php $this->content(); ?>
</div>
<!-- disqus comment system -->
<div class="post-comment">
<?php $this->need('comments.php'); ?>
</div>
<!-- footer -->
<?php $this->need('footer.php'); ?>
</div>
</div>
<!-- menu -->
<?php $this->need('menu.php'); ?>