aboutsummaryrefslogtreecommitdiff
path: root/layouts/home/list.html
blob: af3dbeb843156a054e5768dd651aa264eb0a2d23 (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="{{ .RelPermalink }}">{{ .Title }}</a></li>
	{{ end }}
</ul>
{{ end }}
{{ end}}