Files
blog/layouts/index.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
319 B
HTML

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