删除 tags 页面
This commit is contained in:
parent
f20aeddfdf
commit
cc3b8585d1
31
tags.php
31
tags.php
|
@ -1,31 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* 标签云
|
|
||||||
*
|
|
||||||
* @package custom
|
|
||||||
*/
|
|
||||||
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
|
|
||||||
$this->need('header.php');
|
|
||||||
?>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<section class="content">
|
|
||||||
<?php $this->widget('Widget_Metas_Tag_Cloud', 'sort=mid&ignoreZeroCount=1&desc=0&limit=100')->to($tags); ?>
|
|
||||||
<!--<div class="meta">共有 <?php #$this->tag(); ?> 个标签</div>-->
|
|
||||||
<?php if ($tags->have()): ?>
|
|
||||||
<?php while ($tags->next()): ?>
|
|
||||||
<a href="<?php $tags->permalink(); ?>" rel="tag"><?php $tags->name(); ?> (<?php $tags->count(); ?>)</a> /
|
|
||||||
<?php endwhile; ?>
|
|
||||||
<?php else: ?>
|
|
||||||
<?php _e('没有任何标签'); ?>
|
|
||||||
<?php endif; ?>
|
|
||||||
</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'); ?>
|
|
Loading…
Reference in New Issue