Files
blog/layouts/_default/list.html
bojemoi 3f087ded01
Some checks failed
Hugo Build & Deploy / build-deploy (push) Failing after 1m5s
Initial Hugo site with Gitea Actions deploy workflow
2026-02-06 19:56:10 +01:00

13 lines
327 B
HTML

{{ define "title" }}{{ .Title }} - {{ .Site.Title }}{{ end }}
{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
{{ range .Pages }}
<article>
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
<time>{{ .Date.Format "2 January 2006" }}</time>
<p>{{ .Summary }}</p>
</article>
{{ end }}
{{ end }}