forked from rimochiko/Typecho-theme-zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
35 lines (31 loc) · 1.12 KB
/
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
28
29
30
31
32
33
34
35
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<body class="mck-subpage animated fadeIn">
<div class="mck-loading-wrapper" id="mck-loading-wrapper">
<div class="mck-loading">
<p>LOADING...</p>
</div>
</div>
<div class="mck-wrapper" data-mcs-theme="minimal-dark" id="mck-wrapper">
<header class="mck-sub-header">
<div class="mck-header-title-wrapper">
<a class="mck-header-maintitle" href="<?php $this->options->siteUrl() ?>"><?php $this->options->title(); ?></a>
</div>
</header>
<main class="mck-main">
<article class="mck-article-post">
<header href="#" class="mck-article-single">
<div class="mck-article-info-wrapper">
<p class="mck-article-type">[ Happy Everyday ]</p>
</div>
<div class="mck-article-info-wrapper">
<p class="mck-article-title"><?php $this->title() ?></p>
</div>
</header>
<main class="mck-article-content" id="mck-article-content">
<?php $this->content(''); ?>
</main>
</article>
<?php $this->need('comments.php'); ?>
</main>
<?php $this->need('footer.php'); ?>