2022-06-05 16:14:17 +08:00
|
|
|
{{- with .Site.Params.waline }}
|
|
|
|
<div id="waline"></div>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="//unpkg.com/@waline/client@v2/dist/waline.css"/>
|
|
|
|
<script src="//unpkg.com/@waline/client@v2/dist/waline.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
const locale = {
|
|
|
|
placeholder: "{{ .placeholder }}"
|
|
|
|
};
|
|
|
|
Waline.init({
|
|
|
|
locale,
|
2022-06-27 15:20:45 +08:00
|
|
|
el : "#waline",
|
|
|
|
pageview : {{ .pageView }},
|
|
|
|
emoji : {{ .emoji }},
|
|
|
|
imageUploader : {{ .imgUploader }},
|
|
|
|
wordLimit : {{ .wordLimit }},
|
|
|
|
requiredMeta : {{ .requiredMeta }},
|
|
|
|
serverURL : "{{ .serverURL }}",
|
|
|
|
lang : "{{ $.Lang }}",
|
|
|
|
dark : "auto"
|
2022-06-05 16:14:17 +08:00
|
|
|
});
|
|
|
|
</script>
|
2022-06-29 19:31:16 +08:00
|
|
|
{{- end }}
|