You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
1.2 KiB

<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
?>
<main>
<section class="content">
<h1><?php $this->category(',', false); ?></h1>
<div class="meta"><?php echo $this->getDescription(); ?></div>
<div class="info"></div>
<ul class="archived-posts">
<?php while($this->next()): ?>
<li>
<time datetime="<?php $this->date('Y.m.j'); ?>"><?php $this->date('Y.m.j'); ?></time>
<a href="<?php $this->permalink() ?>"><?php $this->title() ?></a><?php if ($this->options->eyeshow == 'able'): ?> <span><?php get_post_view($this) ?>度</span><?php endif; ?>
</li>
<?php endwhile; ?>
</ul>
</section>
<section class="pager">
<div class="paginator pager pagination no_pages">
<div class="paginator_container pagination_container"></div>
</div>
</section>
</main>
</div>
<?php $this->need('footer.php'); ?>