forked from 2016Dongyu/Typecho-theme-DONG-MDUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
33 lines (23 loc) · 1.04 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
32
33
<?php $this->need('header.php'); ?>
<Div class="main mdui-container m2" oncontextmenu="return false;">
<div class="mdui-card mdui-typo mduijg mdui-hoverable">
<div class="mdui-card-media">
<img oncontextmenu="return false;" ondragstart="return false;" src="<?php echo showThumb($this,null,true); ?>"/>
<div class="mdui-card-media-covered mdui-card-media-covered-gradient">
<div class="mdui-card-primary">
<div class="mdui-card-primary-title">
<span class="tit"><?php $this->title() ?></span>
<time> © <?php $this->author(); ?> <?php $this->date('Y-m-d'); ?></time></div>
</div>
</div>
</div>
<div class="mdui-card-actions mdui-typo" style="color: rgba(0,0,0,.8);padding: 20px;">
<?php $this->content(); ?>
</div>
</div>
<div class="mdui-hoverable mdui-shadow-1" style="background-color: #ffffff;color: rgba(0,0,0,.8);padding: 20px;">
<?php if($this->allow('comment')){$this->need('comments.php');}?>
</div>
</div>
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>