fix(template):修复右列模板调用参数传递问题

- 移除了右列模板调用时多余的参数传递
- 确保模板调用符合无参数传递的预期行为
-修正了可能因此导致的模板渲染错误
This commit is contained in:
2025-11-08 11:12:51 +08:00
parent 597cbaf39a
commit 8a752774ee

View File

@@ -15,7 +15,7 @@
{{ template "left_column" . }}
</div>
<div class="col-9">
{{ template "right_column" . }}
{{ template "right_column" }}
</div>
</div>
</body>