-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.php
71 lines (68 loc) · 2.76 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/**
* 简洁的双栏主题
*
* @package Pui Theme
* @author Praming
* @version 1.0
* @link http://praming.cn
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
?>
<div class="container">
<div class="row">
<div class="page-main">
<?php while($this->next()): ?>
<div class="row box-shadow-hover-large">
<div class="page-main-img">
<a class="page-main-img-avatar" href="<?php $this->permalink() ?>">
<?php if($this->options->slimg && 'guanbi'==$this->options->slimg): ?>
<?php else: ?>
<?php if($this->options->slimg && 'showoff'==$this->options->slimg): ?><a href="<?php $this->permalink() ?>" ><?php showThumbnail($this); ?></a>
<?php else: ?>
<img src="<?php showThumbnail($this); ?>">
<?php endif; ?>
<?php endif; ?>
</a>
</div>
<div class="page-main-text">
<div class="text-title"><span class="badge bg-blue link-white"><?php $this->category(','); ?></span> <a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></div>
<div class="text-sub">由 <?php $this->author(); ?> 撰写于 <time datetime="<?php $this->date('c'); ?>" itemprop="datePublished"><?php $this->date(); ?></time> 浏览:<?php get_post_view($this) ?> 评论:<?php $this->commentsNum('%d'); ?></div>
<div class="index-content">
<?php $this->excerpt(180, '[...]'); ?>
</div>
</div>
</div>
<hr class="two"/>
<?php endwhile; ?>
<!--分页-->
<div class="page-nav">
<?php $this->pageNav('<i class="iconfont"></i>', '<i class="iconfont"></i>',2,'...',array('wrapTag' => 'ul', 'wrapClass' => 'pagination','itemTag' => 'li','currentClass' => 'active',)); ?>
</div>
</div>
<div class="page-sub">
<div class="row">
<div class="page-sub-img">
<img src="<?php $this->options->themeUrl('img/avatar.png'); ?>"/>
</div>
<div class="page-sub-text">
<span style="color: #FF5722;">praming.cn</span><br />守得云开见月明
</div>
</div>
<hr/>
<div class="text-small column-1-3 column-divider text-center text-gray" style="line-height: 1.5;">
<?php Typecho_Widget::widget('Widget_Stat')->to($stat); ?>
<li>文章<br /><?php $stat->publishedPostsNum() ?></li><br />
<li>评论<br /><?php $stat->publishedCommentsNum() ?></li><br />
<li>分类<br /><?php $stat->categoriesNum() ?></li><br />
<li>标签<br /><?php $stat->publishedPostsNum() ?></li><br />
<li>页面<br /><?php $stat->publishedPagesNum() ?></li><br />
<li>浏览<br /><?php $stat->publishedPostsNum() ?></li><br />
</div>
<hr/>
<?php $this->need('sidebar.php'); ?>
</div>
<?php $this->need('footer.php'); ?>
</div>
</div>