morgan.mcmillian.dev/templates/index.html
Morgan McMillian bbefc262ac
All checks were successful
dreamfall/morgan.mcmillian.dev/pipeline/head This commit looks good
removed sourcehut and relabled git links
2023-02-10 09:09:54 -08:00

19 lines
655 B
HTML

{{ define "main" }}
{{ partial "header.html" . | safeHTML }}
<p>My name is Morgan McMillian, also known as thrrgilag in various places online. I am a software engineer with an obsession for Linux, open-source software, and tech in general.</p>
<h2>code</h2>
<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 }}