You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
{{ $p := . }}
|
|
{{ $basePath := path.Clean (urls.Parse .Site.BaseURL).Path }}
|
|
{{ if eq $basePath "/" }}
|
|
{{ $basePath = "" }}
|
|
{{ end }}
|
|
{{ $links := false }}
|
|
{{ $pills := false }}
|
|
{{ $tabs := false }}
|
|
{{ with .Site.Params.paige.menu_style }}
|
|
{{ if eq . `links` }}
|
|
{{ $links = true }}
|
|
{{ else if eq . `tabs` }}
|
|
{{ $tabs = true }}
|
|
{{ else }}
|
|
{{ $pills = true }}
|
|
{{ end }}
|
|
{{ else }}
|
|
{{ $pills = true }}
|
|
{{ end }}
|
|
<nav class="justify-content-center my-3 nav{{ if $pills }} nav-pills{{ else if $tabs }} nav-tabs{{ end }}">
|
|
{{ range .Site.Menus.main }}
|
|
{{ $pagePath := strings.TrimPrefix $basePath $p.RelPermalink }}
|
|
{{ $menuPath := strings.TrimPrefix $basePath .URL }}
|
|
{{ $active := or (and (eq $menuPath `/`) (eq $pagePath `/`)) (and (ne $menuPath `/`) (hasPrefix $pagePath $menuPath)) }}
|
|
<a href="{{ .URL }}" class="{{ if $active }}active {{ if $links }}link-secondary {{ end }}{{ end }}nav-link"{{ if $active }} aria-current="page"{{ end }}>{{ .Name }}</a>
|
|
{{ end }}
|
|
</nav>
|