- 修改sidebar.php,显示首页博主头像
- 增加自定义CSS
/* 缩小Hello文字字号并设置左右间距 */
:root {
--hello-min: 0.7rem;
--hello-pref: 4vw;
--hello-max: 2rem;
}
.index-footer-widget .hello-widget .hello-content .hello-text {
font-size: clamp(var(--hello-min), var(--hello-pref), var(--hello-max));
/* 保留原有 color, font-weight 等 */
}
- 修改友情链接模板,去除标题、添加友链要求、申请要求,条件减为2个。
- 修改分组字号为2rem
- 添加登录退出按钮
<!-- 添加登录登出 -->
<div>
<?php if ($this->user->hasLogin()): ?>
<a class="nav-top-item" href="<?php $this->options->logoutUrl(); ?>" title="退出">退出</a>
<?php else: ?>
<a class="nav-top-item" href="<?php $this->options->adminUrl('login.php'); ?>" title="登录">登录</a>
<?php endif; ?>
</div>
- 图标地址
//at.alicdn.com/t/c/font_5127330_klbkcq4678o.css
暂无评论