morgan.mcmillian.dev/templates/index.html

21 lines
727 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://gitlab.com/thrrgilag" rel="me">gitlab</a>
<a href="https://git.dreamfall.space/thrrgilag" rel="me">gitea</a>
<a href="https://git.sr.ht/~thrrgilag" rel="me">sourcehut</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 }}