forked from Innei/Typecho-Theme-Paul
-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-say.php
31 lines (27 loc) · 832 Bytes
/
page-say.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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php
/**
* 语录页面
*
* @package custom
*/
$this->need('header.php');
require_once 'pages.php';
?>
<main id="say">
<nav class="navigation">
<a href="<?php echo $GLOBALS['note']; ?>">日记</a>
<?php if ($this->options->blog_url): ?> <a href="<?php $this->options->blog_url(); ?>" target="_blank">
博文</a><?php endif; ?>
<a href="<?php echo $GLOBALS['say']; ?>" class="active">语录</a>
</nav>
<article class="paul-say">
<?php
$says = Paul::parse_says($this->content);
foreach ($says as $say => $avatar){
echo '<blockquote><p>' . $avatar . '</p><p class="author"> ' . $say . '</p></blockquote>';
}
?>
</article>
</main>
<?php $this->need('footer.php'); ?>