blob: 85558addad82cc87bc8e261d4dd7185e6714ef43 (
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
|
{{- /* HOMEPAGE */ -}}
{{- define "main" }}
<div class="homepage">
<header class="homepage__header">
<h1 class="homepage__header-title">
{{ with .Title }}{{ . }}{{ else }}{{ site.Title | default "Welcome to my Blog!" }}{{ end }}
</h1>
{{- with site.Params.author.portrait }}
<img src="{{ . }}" alt="{{ . }}" class="homepage__header-image" />
{{- end }}
{{- with .Content }}
<div class="homepage__header-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 }}
|