hugo-blog/layouts/index.html
John d404655fec
All checks were successful
Build Hugo Site / build (push) Successful in 8s
content plugin
2025-03-09 15:40:44 -05:00

20 lines
500 B
HTML

{{ define "main" }}
<section class="hero">
<h1>{{ .Title }}</h1>
<p>{{ .Content }}</p>
</section>
<section class="latest-posts">
<h2>Latest Blog Posts</h2>
<ul>
{{ range first 3 (where .Site.RegularPages "Section" "posts") }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
<small>{{ .Date.Format "Jan 2, 2006" }}</small>
</li>
{{ end }}
</ul>
<a href="/blog/" class="button">See All Posts</a>
</section>
{{ end }}