1. 修改sidebar.php,显示首页博主头像
  2. 增加自定义CSS
/* 缩小Hello文字字号并设置左右间距 */
.index-footer-widget .hello-widget .hello-content .hello-text {
  font-size: 1.5rem !important;  /* 从2rem缩小到1.5rem,一个等级 */
  padding: 0 2ch !important;     /* 左右各2字符间距,使用ch单位 */
}
  1. 修改友情链接模板,去除标题、添加友链要求、申请要求,条件减为2个。
  2. 修改分组字号为2rem
  3. 添加登录退出按钮
<!-- 添加登录登出 -->
<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>