morgan.mcmillian.dev/templates/index.html
Morgan McMillian 0889db812c
All checks were successful
dreamfall/morgan.mcmillian.dev/pipeline/head This commit looks good
adjust header of main page
2023-02-10 17:30:42 -08:00

20 lines
507 B
HTML

{{ define "main" }}
{{ partial "header.html" . | safeHTML }}
<p>Morgan McMillian, also known as thrrgilag.</p>
<nav>
<a href="https://git.dreamfall.space/thrrgilag" rel="me">git</a>
<a href="https://gitlab.com/thrrgilag" rel="me">gitlab</a>
<a href="https://github.com/thrrgilag" rel="me">github</a>
</nav>
<h2>posts</h2>
<ul>
{{ range .Pages }}
<li>{{ .Date.Format "2006-01-02" }} ~ <a href="{{ .Path }}">{{ .Title }}</a></li>
{{ end -}}
</ul>
{{ end }}