morgan.mcmillian.dev/templates/index.html

20 lines
507 B
HTML
Raw Normal View History

2022-05-07 16:40:53 +00:00
{{ define "main" }}
{{ partial "header.html" . | safeHTML }}
2023-02-11 01:30:42 +00:00
<p>Morgan McMillian, also known as thrrgilag.</p>
2022-05-07 16:40:53 +00:00
<nav>
<a href="https://git.dreamfall.space/thrrgilag" rel="me">git</a>
2022-10-01 14:18:47 +00:00
<a href="https://gitlab.com/thrrgilag" rel="me">gitlab</a>
2022-11-04 21:07:18 +00:00
<a href="https://github.com/thrrgilag" rel="me">github</a>
2022-05-07 16:40:53 +00:00
</nav>
<h2>posts</h2>
<ul>
{{ range .Pages }}
<li>{{ .Date.Format "2006-01-02" }} ~ <a href="{{ .Path }}">{{ .Title }}</a></li>
{{ end -}}
</ul>
2023-02-11 01:30:42 +00:00
2022-05-07 16:40:53 +00:00
{{ end }}