2025-01-07 19:43:39 -07:00

14 lines
401 B
HTML

{{ define "main" }}
<section class="h-feed">
<h2>Notes</h2>
<ul>
{{ range .Pages }}
<li class="h-entry">
<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
<div class="e-content">{{ .Content }}</div>
</li>
{{ end }}
</ul>
</section>
{{ end }}