2024-06-27 19:59:47 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* 全部标签
|
|
|
|
*
|
|
|
|
* @package custom
|
|
|
|
*/
|
|
|
|
if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
|
2024-07-01 10:03:24 +08:00
|
|
|
<?php $this->need('header.php'); ?>
|
2024-06-27 19:59:47 +08:00
|
|
|
<div class="main">
|
|
|
|
<div class="container">
|
|
|
|
<div class="post-wrap tags">
|
|
|
|
<h2 class="post-title">- <?php $this->title() ?> -</h2>
|
|
|
|
<?php $this->widget('Widget_Metas_Tag_Cloud', 'sort=mid&ignoreZeroCount=1&desc=0')->to($tags); ?>
|
|
|
|
<?php if($tags->have()): ?>
|
|
|
|
<div class="tag-cloud-tags">
|
|
|
|
<?php while ($tags->next()): ?>
|
|
|
|
<a role="listitem" target="<?php $this->options->sidebarLinkOpen(); ?>" data-toggle="tooltip" data-placement="top" href="<?php $tags->permalink(); ?>" rel="tag" title="<?php $tags->count(); ?> 篇文章"><?php $tags->name(); ?> <small>(<?php $tags->count(); ?>)</small></a>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div>
|
|
|
|
<?php else: ?>
|
|
|
|
<p class="text-center pb-2"><?php _e('没有任何标签'); ?></p>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div></div></div>
|
2024-07-01 10:03:24 +08:00
|
|
|
<?php $this->need('footer.php'); ?>
|