hugo-blog/layouts/index.html
John 7a855526d5
All checks were successful
Build Hugo Site / build (push) Successful in 7s
who knows
2025-03-09 19:04:11 -05:00

21 lines
510 B
HTML

{{ define "main" }}
<section class="hero">
<h1>{{ .Title }}</h1>
hello
<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 }}