aboutsummaryrefslogtreecommitdiff
path: root/layouts/home/list.html
blob: 4389e28095741f670fc7a238698f287cf1738119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ define "main" }}
{{- .Content }}

{{ with .Site.GetPage "section" "blog" }}
<h2 id="{{ .RelPermalink }}">
	<a class="anchor" href="{{ .RelPermalink | safeURL }}">#</a>
	Últimas entradas
</h2>

<ul>
	{{ range .Pages }}

	<li>
		<time datetime="{{ .PublishDate.Format " 2006-01-02T15:04:05-07:00"}}">{{ .PublishDate.Format "02/01" }}</time>
		<a href="{{ .RelPermalink }}">{{ .Title }}</a>
	</li>
	{{ end }}
</ul>
{{ end }}
{{ end}}