13 lines
355 B
HTML
Raw Normal View History

2024-02-22 21:35:34 -07:00
{{ define "main" }}
{{ .Content }}
<h2>Latest Blog Posts</h2>
<ul>
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
<li><a class="title u-url p-name" href="{{ .RelPermalink }}">{{ .Title }}</a></li>
2024-02-28 18:42:02 -07:00
{{ end }}
</ul>
2024-02-22 21:35:34 -07:00
{{ end }}
{{ define "sidebar" }}
{{- partial "sidebar.html" . -}}
{{ end }}