Files
2023-03-10 14:51:34 +08:00

15 lines
239 B
HTML

{{define "index.html"}}
{{template "base.html" .}}
{{end}}
{{define "body"}}
<div>总数: {{ .total }}</div>
<ul>
{{range .list}}
<li>
<a href=" /article/{{.Id }}"> {{.Conf.Title}}</a>
</li>
{{end}}
</ul>
{{end}}