2023-01-30 13:14:33 -06:00
|
|
|
<h1>{{ $.Site.Title }}</h1>
|
2023-02-16 13:51:44 -06:00
|
|
|
<p>{{ $.Site.Params.subtitle }}</p>
|
|
|
|
|
2023-05-17 20:13:27 -05:00
|
|
|
<!-- readable.css v1.1.0 introduced different navbar styles and defaults to a
|
|
|
|
navbar without animations. We default to "classy" to keep the animations and be
|
|
|
|
backwards compatible to earlier versions of this theme without requiring a
|
|
|
|
config change. -->
|
|
|
|
{{ $navbar_style := (default "classy" $.Site.Params.navbar_style) }}
|
|
|
|
<nav data-style={{ $navbar_style }}>
|
2023-02-16 13:51:44 -06:00
|
|
|
{{ range .Site.Menus.main -}}
|
2023-05-17 20:13:27 -05:00
|
|
|
{{ if eq $navbar_style "classy" }}<span>{{ end }}
|
2023-02-16 13:51:44 -06:00
|
|
|
<a href="{{ .URL | absLangURL }}">{{ .Name }}</a>
|
2023-05-17 20:13:27 -05:00
|
|
|
{{ if eq $navbar_style "classy" }}</span>{{ end }}
|
2023-02-16 13:51:44 -06:00
|
|
|
{{- end }}
|
2023-05-02 16:15:28 -05:00
|
|
|
</nav>
|