aboutsummaryrefslogtreecommitdiff
path: root/layouts/page/index.html
blob: a8d5d0491bf4e1ae083a683b96767373de7b4361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{define "main"}}
{{ .Content }}
<h2>Latest Blog Posts</h2>
<ul>
    {{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
    <li>{{.Date.Format "2006-02-01"}} | <a href="{{.Permalink}}">{{.Title}}</a></li>
    {{ end }}
</ul>
<h2>News</h2>
<a href="{{"news/index.xml"|relURL}}">RSS Feed</a> |
<a href="{{"news"|relURL}}">See all news</a>
{{ range first 5 (where .Site.RegularPages.ByDate.Reverse "Section" "news") }}
<h3><a href="{{.Permalink}}">{{.Date.Format "Jan 02, 2006"}}</a></h3>
<p>{{ .Content }}</p>
{{ end }}
{{ end }}