hugo-blog/layouts/index.html
John 15699af640
All checks were successful
Build Hugo Site / build (push) Successful in 7s
added layouts
2025-03-09 15:32:49 -05:00

26 lines
721 B
HTML

{{ define "main" }}
<section class="hero">
<h1>Welcome to My Hugo Site</h1>
<p>Your tagline or mission statement goes here.</p>
<a href="/blog/" class="button">Read the Blog</a>
</section>
<section class="about">
<h2>About Me</h2>
<p>A short introduction about yourself or your website.</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 }}