Files
davideisinger.com/themes/v2/layouts/index.html
2023-04-04 20:19:10 -04:00

27 lines
470 B
HTML

{{ define "main" }}
{{ .Content }}
<section>
<hr>
<h3>
<a href="/journal">Journal</a>
</h3>
<ul>
{{ range (where .Site.RegularPages "Type" "in" "journal") }}
<li>
<p>
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ .Date | time.Format "(2006-01-02)" }}
</p>
{{ .Summary }}
</li>
{{ end }}
</ul>
</section>
{{- partial "pinboard.html" . -}}
{{ end }}