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: 455e6aafa6ac67db2000e5ad677b47f724614b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{- define "main" -}}

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

{{ partial "post-list" . }}

{{- end -}}