Add Hugo static site with homepage, resume, and blog sections

This commit is contained in:
2026-02-12 13:49:00 -05:00
parent 6f2b9a076f
commit 24b129cfe2
50 changed files with 1566 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
{{ end }}