Files
go_blog/web/themes/default/templates/index.tmpl

23 lines
496 B
Cheetah
Raw Normal View History

2025-06-24 19:34:39 +08:00
{{ define "content" }}
2026-02-12 15:45:11 +08:00
<div class="post-list">
{{ range .Items }}
<div class="list-card">
<a href="/post/{{ .Cid }}">
<h2>{{ .Title }}</h2>
</a>
<p>{{ .Text }}</p>
<small>创建于: {{ .Created }}</small>
2025-04-15 16:47:00 +08:00
</div>
2026-02-12 15:45:11 +08:00
{{ else }}
<div class="list-card">
<p>暂无文章</p>
</div>
{{ end }}
</div>
<div class="sidebar">
<h3>博客信息</h3>
<p>欢迎访问个人博客</p>
</div>
2025-06-24 19:34:39 +08:00
{{ end }}
2026-02-12 15:45:11 +08:00
{{ template "base" . }}