Morgan McMillian
0889db812c
All checks were successful
dreamfall/morgan.mcmillian.dev/pipeline/head This commit looks good
19 lines
507 B
HTML
19 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 }}
|