-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
index.php
55 lines (55 loc) · 2.36 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
<?php
/**
* The miraculous things you hold.
* 作者:<a href="https://guhub.cn">Eltrac</a> | 帮助文档:<a href="https://github.com/BigCoke233/miracles/blob/master/docs/wiki.md">Wiki</a>
*
* @package Miracles
* @author Eltrac
* @version 2.0.0
* @link https://guhub.cn
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('includes/head.php');
$this->need('includes/header.php');
?>
<main class="main-container container" role="main">
<div class="post-list"><!-- 文章循环开始 -->
<?php while($this->next()): ?>
<br />
<!-- 文章卡片 -->
<div class="post-item" role="article">
<div class="container-fluid"><div class="row">
<div class="col-md-6 post-banner-box">
<a href="<?php $this->permalink(); ?>" class="post-link">
<div class="post-banner">
<img src="<?php echo Utils::addLoadingImages($this->options->CDN, $this->options->loading_image, 'normal'); ?>" data-gisrc="<?php Utils::postBanner($this); ?>">
</div>
</a>
</div>
<div class="col-md-6 post-item-content">
<a href="<?php $this->permalink(); ?>" class="post-link" title="<?php $this->title(); ?>">
<h1 class="post-title"><?php $this->sticky(); ?><?php $this->title(); ?></h1>
</a>
<p class="post-excerpt">
<?php if($this->fields->excerpt && $this->fields->excerpt!='') {
echo $this->fields->excerpt;
}else{
echo $this->excerpt(130);
}
?>
</p>
<p class="post-meta"><i class="iconfont icon-block"></i> <?php $this->category(','); ?> <i class="iconfont icon-comments"></i> <?php $this->commentsNum('0', '1', '%d'); ?> <i class="iconfont icon-clock"></i> <?php $this->date(); ?></p>
<p class="post-button-box large-screen"><a href="<?php $this->permalink(); ?>" class="button post-button"><?php gtecho('postTexts','read_more'); ?></a></p>
</div>
</div></div>
</div>
<br />
<?php endwhile; ?>
<!-- 文章分页 -->
<div class="post-pagenav">
<span class="post-pagenav-left"><?php $this->pageLink('<i class="iconfont icon-chevron-left"></i>'); ?></span>
<span class="post-pagenav-right"><?php $this->pageLink('<i class="iconfont icon-chevron-right"></i>','next'); ?></span>
</div>
<!-- 文章循环结束 --></div>
</main>
<?php $this->need('includes/footer.php'); ?>