forked from BigCoke233/miracles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
65 lines (65 loc) · 2.68 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
<?php
/**
* Born to be the Miracles. 生为奇迹
* 作者:<a href="https://guhub.cn">Eltrac</a> | 帮助文档:<a href="https://www.notion.so/eltrac/c7c631e21b3345caa2a09bd2fb5dd4b2">GitHub Wiki</a>
*
* @package Miracles
* @author Eltrac
* @version 1.5.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="/usr/themes/Miracles/images/loading/<?php echo $this->options->loading_image ?>.gif" data-original="<?php
if($this->fields->banner && $this->fields->banner=!''):
echo $this->fields->banner();
else:
if($this->options->randomBanner==''){
echo Utils::indexTheme('images/postbg/'); srand(mb_strlen($this->title));echo rand(1,15).'.jpg';
}
else{
$banner_url = explode(',',$this->options->randomBanner);
echo $banner_url[mt_rand(0,count($banner_url)-1)];}
endif; ?>">
</div>
</a>
</div>
<div class="col-md-6 post-item-content">
<a href="<?php $this->permalink(); ?>" class="post-link">
<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">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'); ?>