导航栏logo选择svg的时候不显示
问题是顶部导航栏图片设置为svg格式图片时不正常展示;
修改就是加个img的属性就行,如图:
修改位置:/templates/assets/css/style.css
.navbar-brand img.logo {
height: 35px;
}

修改前

修改后

分类页布局
修改前:
<!-- <div class="col-12 col-md-6" th:each="category : ${categories}"> -->
修改后:
<div class="col-12 col-sm-6 col-md-3" th:each="category : ${categories}">
修改前

修改后

友链页面提示和评论区
添加下面的代码<div class="container"> 标签内的底部即可
<div class="post block">
<div class="post-content">
<h3 style="" id="%E7%94%B3%E8%AF%B7%E5%8F%8B%E9%93%BE">申请友链</h3>
<blockquote>
<p style="">请按照下面这个格式提交给我噢,提交前请确保已添加 <span style="color: #2563eb"><strong>九陌斋</strong></span>
博客的友情链接!</p>
</blockquote>
<ol>
<li>
<p style="">网站名称:九陌斋</p>
</li>
<li>
<p style="">网站地址:https://blog.jiumoz.com</p>
</li>
<li>
<p style="">描述:每一条思想的道路都通向知识的繁华!</p>
</li>
<li>
<p style="">头像:https://blog.jiumoz.com/upload/logo.png</p>
</li>
<li>
<p style="">*能看到友链的地址:https://blog.jiumoz.com/links</p>
</li>
</ol>
<p style=""></p>
</div>
</div>
<!-- 评论模块 -->
<div id="post-comment" class="post-comment card mt-3" th:if="${haloCommentEnabled}">
<div class="card-header">
<h2 class="text-lg text-dark">
<i class="fw-normal text-xl text-primary icon-md iconfont icon-pinglun1 me-1"></i>评论
</h2>
</div>
<div class="card-body">
<halo:comment group="plugin.halo.run" kind="Plugin" th:attr="name=${pluginName}"
colorScheme="currentColorScheme" />
</div>
</div>
评论