Files
GoCode/templates/pages/index.html
2025-11-23 22:11:31 +08:00

10 lines
266 B
HTML

{{ define "index" }}
{{ template "base" . }}
{{ block "title" . }}首页{{ end }}
{{ block "content" . }}
<h1>欢迎来到我的 Gin 网站</h1>
<p>这里是首页内容,可以展示最新文章或公告。</p>
{{ end }}
{{ end }}