20 lines
500 B
HTML
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 }}
|