1.归档列表图片和链接错误
首页 >> 外观 >> 主题编辑 >> 根目录/archives.ftl
将14
行的${post.thumbnail}
和16
行的${post.fullPath!}
换一下位置即可。修改后如下:
<a href="${post.fullPath}" class="media-left">
<p class="image is-64x64">
<img class="thumbnail" src="${post.thumbnail!}" alt="${post.title!}">
</p>
</a>
2.微信分享的样式不对
为什么不对自己体验一下就可以了
首页 >> 外观 >> 主题编辑 >> 根目录/layout/share/sharejs.ftl
在<style>
标签中添加一些样式:
<!-- ... --->
<style>
<#if is_post??>
// ...
.social-share .icon-wechat .wechat-qrcode {
top: -230px;
width: 140px;
height: 220px;
}
.social-share .icon-wechat .wechat-qrcode .help {
padding: 0 8px;
}
.social-share .icon-wechat .wechat-qrcode:after {
margin-left: 24px;
}
</#if>
</style>