summaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 127af8313f54cbc9b158a601b480897c56b236ce (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" 10 
        "title" (lang.Translate "posts.recent" | default "Recent Articles")
        "show_view_all" true
        ) 
    -}}
</div>
{{- end }}