blob: b23b087172b1be98446cf7deeac822c434967c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{{- /* HOMEPAGE */ -}}
{{- define "main" }}
<div class="homepage">
<header class="homepage__hero">
<h1 class="homepage__title">
{{ with .Title }}{{ . }}{{ else }}{{ site.Title | default "Welcome to my Blog!" }}{{ end }}
</h1>
{{- with .Content }}
<div class="homepage__content">
{{ . }}
</div>
{{- end }}
</header>
{{- partial "list/recent-posts.html" (dict
"count" 5
"title" (lang.Translate "posts.recent" | default "Recent Articles")
"show_view_all" true
)
-}}
</div>
{{- end }}
|