fix: 修复 space 模板缺少闭合 {{end}} 导致 unexpected EOF 错误

- space/index.html 缺少一个 {{end}} 闭合外层的 {{if .Error}}/{{else}} 结构
- 在 </body> 前补充缺失的 {{end}}
This commit is contained in:
2026-06-01 22:16:37 +08:00
parent c6da3932f3
commit 70bd033e6c

View File

@ -741,5 +741,6 @@ document.querySelectorAll('#privacy-follow-list, #privacy-follower-list').forEac
}); });
</script> </script>
{{end}} {{end}}
{{end}}
</body> </body>
</html> </html>