mirror of
https://github.com/flysnow-org/maupassant-hugo.git
synced 2026-08-24 07:18:55 +00:00
1d4222ed2f
* Update README * 增加从首页隐藏选项 * 可根据设置隐藏文章 * 增加Waline评论系统
29 lines
894 B
HTML
29 lines
894 B
HTML
{{ if and .IsPage (ne .Params.comment false) }}
|
|
{{ template "_internal/disqus.html" . }}
|
|
|
|
<!-- utteranc -->
|
|
{{ if .Site.Params.utteranc.enable }}
|
|
<div class="post bg-white">
|
|
<script src="https://utteranc.es/client.js"
|
|
repo= "{{ .Site.Params.utteranc.repo }}"
|
|
issue-term="{{ .Site.Params.utteranc.issueTerm }}"
|
|
theme="{{ .Site.Params.utteranc.theme }}"
|
|
crossorigin="anonymous"
|
|
async>
|
|
</script>
|
|
</div>
|
|
{{ end }}
|
|
<!--waline-->
|
|
{{ if .Site.Params.waline.enable }}
|
|
<div id="waline"></div>
|
|
<script src="//cdn.jsdelivr.net/npm/@waline/client"></script>
|
|
<script>
|
|
Waline({
|
|
el: '#waline',
|
|
serverURL: '{{ .Site.Params.waline.serverURL }}',
|
|
placeholder: '{{ .Site.Params.waline.placeholder }}',
|
|
});
|
|
</script>
|
|
{{ end }}
|
|
{{- end }}
|