2020-01-12 15:33:02 +01:00
{{ $geekdocRepo := default (default false .Site.Params.GeekdocRepo) .Page.Params.GeekdocRepo }}
{{ $geekdocEditPath := default (default false .Site.Params.GeekdocEditPath) .Page.Params.GeekdocEditPath }}
{{ if .File }}
{{ $.Scratch.Set "geekdocFilePath" (default .File.Path .Page.Params.geekdocFilePath) }}
{{ else }}
{{ $.Scratch.Set "geekdocFilePath" false }}
{{ end }}
{{define "breadcrumb"}}
{{$parent := .page.Parent }}
{{ if $parent }}
{{ $value := (printf "< a href = '%s' > %s< / a > / %s" $parent.RelPermalink $parent.Title .value) }}
{{ template "breadcrumb" dict "page" $parent "value" $value }}
{{else}}
{{.value|safeHTML}}
{{end}}
{{end}}
2020-01-28 23:18:02 +01:00
< div class = "gdoc-page__header flex justify-between{{ if not $geekdocRepo }} hidden-mobile{{ end }}" itemscope itemtype = "http://data-vocabulary.org/Breadcrumb" >
2020-01-14 00:15:39 +01:00
{{$showBreadcrumb := (and (not .Page.Params.geekdocBreadcrumb) (not .Site.Params.geekdocBreadcrumb))}}
2020-01-12 15:33:02 +01:00
< span >
{{if $showBreadcrumb}}
< span class = "breadcrumb" >
< svg class = "icon path" > < use xlink:href = "#path" > < / use > < / svg >
{{ $name := (partial "title" .) }}
{{ template "breadcrumb" dict "page" . "value" $name }}
< / span >
{{ end }}
< / span >
< span >
{{ if and ($.Scratch.Get "geekdocFilePath") $geekdocRepo $geekdocEditPath }}
< svg class = "icon code" > < use xlink:href = "#code" > < / use > < / svg >
< a href = "{{ $geekdocRepo }}/{{ $geekdocEditPath }}/{{ $.Scratch.Get " geekdocFilePath " } } " >
Edit this page
< / a >
{{ end }}
< / span >
< / div >