forked from newraina/typecho-theme-NexTPisces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
72 lines (69 loc) · 3.14 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
72
<?php
/**
* Hexo主题NexT.Pisces移植版
*
* @package NexT.Pisces
* @author newraina
* @version 1.0
* @link https://github.com/newraina/typecho-theme-NexTPisces
*/
if (!defined('__TYPECHO_ROOT_DIR__')) {
exit;
}
$this->need('header.php');
?>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<?php while ($this->next()): ?>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="<?php $this->permalink() ?>" itemprop="url">
<?php $this->title() ?>
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time itemprop="dateCreated" datetime="<?php $this->date('c'); ?>" content="<?php $this->date('yy-m-d'); ?>">
<?php $this->date('Y-m-d'); ?>
</time>
</span>
<span class="post-category">
|
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<?php $this->category(' , '); ?>
</span>
</span>
<span class="post-comments-count">
|
<a rel="nofollow" href="<?php $this->permalink() ?>#comments"><?php $this->commentsNum('暂无评论', '1 条评论', '%d 条评论'); ?></a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<?php $this->content('阅读全文 »'); ?>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<?php endwhile; ?>
</section>
</div>
<?php $this->pageNav('<i class="fa fa-angle-left"></i>', ' <i class="fa fa-angle-right"></i>', 5, '...', array('wrapTag' => 'nav', 'wrapClass' => 'pagination', 'itemTag' => '', 'prevClass' => 'extend prev', 'nextClass' => 'extend next', 'currentClass' => 'page-number current')); ?>
</div>
<?php $this->need('sidebar.php'); ?>
</div>
</main>
<?php $this->need('footer.php'); ?>