Initial Hugo site with Gitea Actions deploy workflow
Some checks failed
Hugo Build & Deploy / build-deploy (push) Failing after 1m5s

This commit is contained in:
2026-02-06 19:56:10 +01:00
parent 3cb23be2d2
commit 3f087ded01
10 changed files with 123 additions and 0 deletions

12
layouts/index.html Normal file
View File

@@ -0,0 +1,12 @@
{{ 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 }}