- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
hugo/themes/learn/layouts/partials/header.html [1:94]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{ hugo.Generator }}
{{ partial "meta.html" . }}
{{ partial "favicon.html" . }}
{{ .Title }} {{ default "::" .Site.Params.titleSeparator }} {{ .Site.Title }}
{{ $assetBusting := not .Site.Params.disableAssetsBusting }}
{{with .Site.Params.themeVariant}}
{{end}}
{{ range .Site.Params.custom_css -}}
{{- end }}
{{ partial "custom-header.html" . }}
{{ partial "menu.html" . }}
{{if not .IsHome}}
{{ if and (or .IsPage .IsSection) .Site.Params.editURL }}
{{ $File := .File }}
{{ $Site := .Site }}
{{with $File.Path }}
{{ end }}
{{ end }}
{{$toc := (and (not .Params.disableToc) (not .Params.chapter))}}
{{ if $toc }}
{{ end }}
{{$showBreadcrumb := (and (not .Params.disableBreadcrumb) (not .Site.Params.disableBreadcrumb))}}
{{if $showBreadcrumb}}
{{ template "breadcrumb" dict "page" . "value" .Title }}
{{ else }}
{{ .Title }}
{{ end }}
{{ if $toc }}
{{ partial "toc.html" . }}
{{ end }}
{{ end }}
{{ partial "tags.html" . }}
{{ if .Params.chapter }}
{{ end }}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -