21 lines
595 B
HTML
21 lines
595 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="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 }}
|