aboutsummaryrefslogtreecommitdiff
path: root/layouts/home/list.html
blob: 95f13a6b558cc33af9ffaa960758ed0af7346301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ 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>{{ .PublishDate.Format "02/01" }} <a href="{{ .Permalink }}">{{ .Title }}</a></li>
	{{ end }}
</ul>
{{ end }}
{{ end}}