forked from touchitvoid/illi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage.php
More file actions
37 lines (36 loc) · 1.26 KB
/
message.php
File metadata and controls
37 lines (36 loc) · 1.26 KB
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
<?php
/**
* 留言板
* @package custom
*
*/
$this->need('header.php');
?>
<div class="mdui-container">
<div class="vContainer">
<div class="mdui-row">
<div class="mdui-col-md-10 mdui-col-offset-md-1 aboutPage-html">
<div class="mdui-row">
<div class="ab-tImg">
<h1 class="post-page-Title"><?php $this->title() ?></h1>
<p id="pageAuthor"><?php $this->author(); ?>
<span style="margin: 0 5px">·</span><span style="letter-spacing: 1px;"><?php $this->date(); ?></span>
</p>
</div>
</div>
<div class="mdui-row ab-pageBody messagePanel">
<div class="mdui-col-md-12">
<div class="ab-con page" itemprop="articleBody">
<?php $this->content(); ?>
</div>
</div>
</div>
<div class="mdui-divider" style="margin: 12px 0"></div>
<?php $this->need('comments.php'); ?>
</div>
</div>
</div>
</div>
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>
<?php require 'run.php'; ?>