2024-01-29 04:53:34 +00:00
|
|
|
{{ partial "header.html" . }}
|
2024-02-11 20:21:08 +00:00
|
|
|
{{ partial "nav.html" . }}
|
2024-02-08 15:26:15 +00:00
|
|
|
<div class="content">
|
2024-01-29 04:53:34 +00:00
|
|
|
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
{{ range.Data.Pages }}
|
|
|
|
<article class="post-snippet">
|
|
|
|
<h3>
|
|
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
|
|
</h3>
|
|
|
|
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
|
|
|
|
{{ .Date.Format "January 2, 2006" }}
|
|
|
|
</time>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
|
2024-02-08 15:26:15 +00:00
|
|
|
</div>
|
|
|
|
|
2024-01-29 04:53:34 +00:00
|
|
|
{{ partial "footer.html" . }}
|