mirror of
https://github.com/Clortox/tylerperkins.xyz.git
synced 2026-03-07 10:37:58 +00:00
13 lines
294 B
HTML
13 lines
294 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ range .Pages }}
|
|
<article style="margin-bottom: 25px;">
|
|
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
|
<p class="date">{{ .Date.Format "January 2, 2006" }}</p>
|
|
</article>
|
|
{{ end }}
|
|
|
|
<p><a href="/">← Back to home</a></p>
|
|
{{ end }}
|