-
Notifications
You must be signed in to change notification settings - Fork 61
/
index.php
34 lines (31 loc) · 1.41 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
<?php
/**
* 勇敢爱 - Typecho情侣主题
* @package Brave
* @author Veen Zhao
* @version 1.2
* @link https://blog.zwying.com
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('base/head.php');
$this->need('base/nav.php');
?>
<div class="list-content mx-auto mt-5">
<div class="list-top">
<h5 class="list-text">💕世间最动情之事,莫过于两人相依💑,走过四季三餐的温暖。<br>📜相信在以后会有更多美好的事情发生😊</h5>
<?php if ($this->have()) : ?>
<?php while ($this->next()) : ?>
<article style="padding: 20px;border-bottom: 1px solid rgba(0,123,255,.2);text-align: center;" class="post">
<h4 class="post-title" itemprop="name headline"><a class=" list-wbc" itemprop="url" href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h4>
<time datetime="<?php $this->date('c'); ?>" itemprop="datePublished"> 深情地写于 <?php $this->date(); ?></time>
</article>
<?php endwhile; ?>
<?php else : ?>
<article class="post">
<h2 class="post-title"><?php _e('没有找到内容'); ?></h2>
</article>
<?php endif; ?>
<?php $this->pageNav('« 前一页', '后一页 »'); ?>
</div>
</div>
<?php $this->need('base/footer.php'); ?>