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