This commit is contained in:
root
2026-03-04 00:23:03 +08:00
commit 6136d791f2
611 changed files with 65539 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
/**
* 面包屑
*
* @author 星语社长
* @link https://biibii.cn
* @update 2025-1-20 13:02:19
*/
if (! defined('__TYPECHO_ROOT_DIR__')) {
exit;
}
?>
<ul class="breadcrumb mb-0 p-0 pb-2">
<li>
<a href="<?php $this->options->siteUrl(); ?>" class="link" title="首页">首页</a>
</li>
<?php if (count($this->categories) > 0): ?>
<li>
<a class="link" href="<?php echo $this->categories[0]['permalink']; ?>"
title="<?php echo $this->categories[0]['name']; ?>"><?php echo $this->categories[0]['name']; ?></a>
</li>
<?php endif; ?>
<li><span>正文</span></li>
</ul>