-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
page.php
27 lines (23 loc) · 809 Bytes
/
page.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
<?php
/**
* Morecho
*
* @package Morecho Theme
* @author MuZhou233
* @version 0.3.1
* @link https://typecho.mosar.in
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('_layouts/default-0.php');
?>
<h1 class="title"><?php $this->title() ?></h1>
<div class="stamp">
<a class="author" href="/author/<?php echo $this->author->uid ?>"><?php $this->author(); ?></a>
</div>
<article class="card card-article">
<?php if($this->fields->headImage): ?><img class="headimg" src="<?php $this->fields->headImage() ?>"></img><?php endif ?>
<?php if($this->fields->subtitle): ?><h2 class="subtitle"><?php $this->fields->subtitle() ?></h2><?php endif ?>
<?php $this->content(); ?>
</article>
<?php $this->need('_includes/comments.php'); ?>
<?php $this->need('_layouts/default-1.php'); ?>