blob: b2c592567e909dd2f1d72be37d64c03c47658373 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{{ define "head_extras" }}
{{ partial "ld/website.html" . }}
{{ end }}
{{ 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}}
|