bcarlin.net/layouts/home.html

17 lines
374 B
HTML

{{ define "main" }}
<article>
<header>
<h1>{{ .Title }}</h1>
</header>
{{ .Content }}
<section class="h-feed">
<h2 class="p-name">{{ T "recent_posts" }}</h2>
{{- $posts := where .Site.RegularPages "Section" "blog" }}
{{- range first 5 $posts }}
{{ .Render "list-item" }}
{{- end }}
</section>
</article>
{{ end }}