-
Notifications
You must be signed in to change notification settings - Fork 34
/
page.php
22 lines (19 loc) · 927 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
<?php $this->need('header.php'); ?>
<div role="main" id="main">
<div class="content">
<article role="article" class="post">
<h1 class="entry-title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>
<div class="entry-content">
<?php $this->content(); ?>
</div>
<div class="entry-data">
<div class="time">
<span class="year"><?php $this->date('Y'); ?></span>
<span class="month"><?php $this->date('n'); ?>月</span>
<span class="day"><?php $this->date('d'); ?></span>
</div>
</div>
</article>
</div><!--=E .content -->
</div><!--=E #main -->
<?php $this->need('footer.php'); ?>