dhjddcn / halo-theme-butterfly

一个Halo博客主题,Butterfly 🦋
GNU General Public License v3.0
404 stars 94 forks source link

期望自定义页面增加评论块 #102

Open wynn0123 opened 1 year ago

wynn0123 commented 1 year ago

你当前使用的halo版本

2.3.1

你当前使用的主题版本

2.0.3

你的建议是否涉及到一些现有的问题?

自定义页面增加评论模块,且后台评论可以查询

描述你想实现的效果

例如:https://ojson.com/about

描述一些方案

自定义页面增加评论块: <div class="post-comment" th:if="${pluginFinder.available('PluginCommentWidget')}" style="margin-top:40px"> <halo:comment colorScheme="window.dataTheme" group="content.halo.run" kind="Post" th:attr="name=${singlePage.metadata.name}"/> </div>

以上代码可加在page.html <article> 之下。

不过虽然这样是可以展示评论,后台查询还是有点问题,如下会显示 “未知” image

附加信息

另外,期望可以增加留言板、友情链接页面,友链期望后台可配置。作者辛苦了~

dhjddcn commented 1 year ago

有issues 暂时没时间做

wynn0123 commented 1 year ago

有issues 暂时没时间做

经过研究原版主题,改为如下代码后台可正常显示: `

评论

  <halo:comment colorScheme="window.dataTheme" group="content.halo.run" kind="SinglePage"
                th:attr="name=${singlePage.metadata.name}"/>
</div>`

注意:kind必须为SinglePage

前台效果如下: image 后台效果如下: image

ImAmelie commented 1 year ago

我也期待自定义页面显示评论区