forked from typecho-en/theme-Default-M-en
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
26 lines (23 loc) · 916 Bytes
/
index.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
<?php
/**
* This is Typecho's default theme, edited by Mike, translated by Tianyu.
*
* @package Default-M:en
* @author fen & Mike
* @version 1.0
* @link http://www.microhu.com
*/
$this->need('header.php');
?>
<div id="content">
<?php while($this->next()): ?>
<div class="post">
<h2 class="entry_title"><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h2>
<p class="entry_data">Posted on <?php $this->date('Y/n/j'); ?> / Categorized: <?php $this->category(','); ?> / <?php Views_Plugin::theViews('', ' Comments'); ?> / <a href="<?php $this->permalink() ?>#comments"><?php $this->commentsNum('No Comments', '1 Comment', '%d Comments'); ?></a></p>
<?php $this->content('Show all...'); ?>
</div>
<?php endwhile; ?>
<?php $this->pageNav(); ?>
</div><!-- end #content-->
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>