20 lines
723 B
HTML
20 lines
723 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://codeberg.org/thrrgilag" rel="me">codeberg</a> ‧
|
|
<a href="https://git.sr.ht/~thrrgilag" rel="me">sourcehut</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 }}
|