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