bcarlin.net/layouts/home.html

18 lines
374 B
HTML
Raw Permalink Normal View History

2025-06-07 02:33:02 +02:00
{{ define "main" }}
<article>
<header>
<h1>{{ .Title }}</h1>
</header>
{{ .Content }}
<section class="h-feed">
2025-06-20 02:33:45 +02:00
<h2 class="p-name">{{ T "recent_posts" }}</h2>
2025-06-07 02:33:02 +02:00
{{- $posts := where .Site.RegularPages "Section" "blog" }}
{{- range first 5 $posts }}
2025-06-17 01:35:34 +02:00
{{ .Render "list-item" }}
2025-06-07 02:33:02 +02:00
{{- end }}
</section>
</article>
{{ end }}