aboutsummaryrefslogtreecommitdiff
path: root/layouts/home/list.html
blob: f0316bcdd855147bbd538f9f63a3c0fdfb32b16b (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
25
26
27
28
29
{{ define "head_extras" }}
{{ partial "ld/website.html" . }}
{{ end }}

{{ define "main" }}
{{- .Content }}

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

	<ul>
		{{ range .Pages | first 5 }}

		<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>

	<a href="{{ .RelPermalink }}" class="button">Ver todas las entradas</a>
</section>
{{ end }}
{{ end}}