代码拉取完成,页面将自动刷新
同步操作将从 Panda1337/miracles 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
/**
* 归档页面
*
* @package custom
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('includes/head.php');
$this->need('includes/header.php');
?>
<main class="main-container container">
<div class="post-body">
<div class="post-content">
<h2>标签云</h2>
<?php $this->widget('Widget_Metas_Tag_Cloud', 'sort=mid&ignoreZeroCount=1&desc=0&limit=30')->to($tags); ?>
<?php if($tags->have()): ?>
<ul class="tags-list">
<?php while ($tags->next()): ?>
<li class="tags-item"><a href="<?php $tags->permalink(); ?>" rel="tag" class="no-line" title="有 <?php $tags->count(); ?> 篇文章在这个标签下"><?php $tags->name(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php else: ?>
<p><?php _e('没有发现任何标签哦~'); ?></p>
<?php endif; ?>
<br />
<h2>文章归档</h2>
<ul class="archives-list">
<?php
$this->widget('Widget_Contents_Post_Recent', 'pageSize=10000')->to($archives);
$year=0; $mon=0; $i=0; $j=0;
$output = '<div id="archives">';
while($archives->next()):
$year_tmp = date('Y',$archives->created);
$mon_tmp = date('m',$archives->created);
$y=$year; $m=$mon;
if ($year != $year_tmp) {
$year = $year_tmp;
$output .= '<h3 class="archives-year">'. $year .' 年</h3>'; //输出年份
}
$mon = $mon_tmp;
$output .= '<li><a href="'.$archives->permalink .'" class="no-line"><span class="archives-date">'. $mon .'-'.date('d ',$archives->created).'</span> '. $archives->title .'</a></li>'; //输出文章日期和标题
endwhile;
$output .= '</li></div>';
echo $output;
?>
</ul>
</div>
</div>
</main>
<!-- 防止找不到 owo 容器而报错 -->
<div style="display:none" class="OwO"></div>
<?php $this->need('includes/footer.php'); ?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。