halo-theme-sakura/comments.ftl

23 lines
666 B
Plaintext
Raw Normal View History

2020-06-11 21:58:59 +08:00
<#--
COMMENTS TEMPLATE
-->
<#macro comment target,type>
<script>
var configs = {
autoLoad: true,
showUserAgent: true,
loadingStyle: "balls"
}
</script>
<#if !target.disallowComment!false && !settings.keep_record_mode!false>
2020-06-11 21:58:59 +08:00
<section id="comments" class="comments">
<div class="comments-main">
<h3 id="comments-list-title">
<span class="name i18n" data-iname="comment.name"></span>
<span class="noticom i18n" data-iname="comment.number" data-ivalue="${target.commentCount!0}"></span>
</h3>
<halo-comment id="${target.id?c}" type="${type}" :configs="configs"/>
2020-06-11 21:58:59 +08:00
</div>
</section>
</#if>
2020-05-31 19:04:57 +08:00
</#macro>