删除 tags 页面

This commit is contained in:
Skywt2003 2021-12-08 17:36:47 +08:00
parent f20aeddfdf
commit cc3b8585d1
1 changed files with 0 additions and 31 deletions

View File

@ -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'); ?>