layouts/home/index.html (view raw)
1{{ define "main" }}
2<main>
3 <article>
4 <div class="title">
5 <h1>{{.Title}}</h1>
6 </div>
7 <section class="body">
8 {{ .Content }}
9 </section>
10 </article>
11 <h2>Latest articles</h2>
12 <ul>
13 {{ range first 3 ( where .Site.RegularPages "Type" "articles" ) }}
14 <li class="post">
15 <span class="meta">{{ dateFormat "2006-01-02" .Date }}</span>
16 <a href="{{ .RelPermalink }}">{{.Title}}</a>
17 <span class="meta">
18 {{ if .Draft }} <span class="draft-label">DRAFT</span> {{ end }}
19 {{ range (.GetTerms "tags") }}[<a href="{{ .Permalink }}" class="tag">{{ .LinkTitle }}</a>] {{ end }}
20 </span>
21 </li>
22 {{ end }}
23 </ul>
24
25</main>
26{{ end }}