Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « layouts - github.com/zwbetz-gh/minimal-bootstrap-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b711504e96103f9124ba2de5b57b6eb2d4d0f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{- define "main" -}}

{{ $homepage := "" }}
{{ with .Site.Menus.nav }}
  {{ range first 1 . }}
    {{ $homepage = .Name }}
  {{ end }}
{{ end }}
<h1>{{ $homepage }}</h1>

{{ partial "post-list" . }}

{{- end -}}