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 }}
|
2022-02-15 21:14:05 +01:00
|
|
|
{{ $.Scratch.Set "geekdocFilePath" (default (path.Join (default "content" .Site.Params.contentDir) .File.Path) .Page.Params.GeekdocFilePath) }}
|
2020-01-12 15:33:02 +01:00
|
|
|
{{ else }}
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ $.Scratch.Set "geekdocFilePath" false }}
|
2020-01-12 15:33:02 +01:00
|
|
|
{{ end }}
|
|
|
|
|
2020-02-05 09:40:05 +01:00
|
|
|
{{ define "breadcrumb" }}
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ $parent := .page.Parent }}
|
|
|
|
{{ if $parent }}
|
2022-02-07 10:57:43 +01:00
|
|
|
{{ $name := (partial "utils/title" $parent) }}
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ $position := (sub .position 1) }}
|
|
|
|
{{ $value := (printf "<li itemprop='itemListElement' itemscope itemtype='https://schema.org/ListItem'><a itemscope itemtype='https://schema.org/WebPage' itemprop='item' itemid='%s' href='%s'><span itemprop='name'>%s</span></a><meta itemprop='position' content='%d' /></li><li> / </li>%s" $parent.RelPermalink $parent.RelPermalink $name $position .value) }}
|
|
|
|
{{ template "breadcrumb" dict "page" $parent "value" $value "position" $position }}
|
|
|
|
{{ else }}
|
|
|
|
{{ .value | safeHTML }}
|
|
|
|
{{ end }}
|
2020-02-05 09:40:05 +01:00
|
|
|
{{ end }}
|
2020-01-12 15:33:02 +01:00
|
|
|
|
2020-02-27 00:08:00 +01:00
|
|
|
{{ $showBreadcrumb := (and (default true .Page.Params.GeekdocBreadcrumb) (default true .Site.Params.GeekdocBreadcrumb)) }}
|
2020-02-05 10:13:04 +01:00
|
|
|
{{ $showEdit := (and ($.Scratch.Get "geekdocFilePath") $geekdocRepo $geekdocEditPath) }}
|
2022-01-06 13:58:10 +01:00
|
|
|
<div
|
|
|
|
class="gdoc-page__header flex flex-wrap
|
|
|
|
{{ if $showBreadcrumb }}
|
|
|
|
justify-between
|
|
|
|
{{ else }}
|
|
|
|
justify-end
|
|
|
|
{{ end }}
|
|
|
|
{{ if not $showEdit }}hidden-mobile{{ end }}
|
|
|
|
{{ if (and (not $showBreadcrumb) (not $showEdit)) }}hidden{{ end }}"
|
|
|
|
itemprop="breadcrumb"
|
|
|
|
>
|
|
|
|
{{ if $showBreadcrumb }}
|
2021-02-20 22:54:49 +01:00
|
|
|
<div>
|
2022-04-18 20:33:23 +02:00
|
|
|
<svg class="gdoc-icon gdoc_path hidden-mobile"><use xlink:href="#gdoc_path"></use></svg>
|
2022-01-06 13:58:10 +01:00
|
|
|
<ol class="breadcrumb" itemscope itemtype="https://schema.org/BreadcrumbList">
|
|
|
|
{{ $position := sub (len (split .RelPermalink "/")) 1 }}
|
2022-02-07 10:57:43 +01:00
|
|
|
{{ $name := (partial "utils/title" .) }}
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ $value := (printf "<li itemprop='itemListElement' itemscope itemtype='https://schema.org/ListItem'><span itemprop='name'>%s</span><meta itemprop='position' content='%d' /></li>" $name $position ) }}
|
|
|
|
{{ template "breadcrumb" dict "page" . "value" $value "position" $position }}
|
|
|
|
</ol>
|
2021-02-20 22:54:49 +01:00
|
|
|
</div>
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ end }}
|
|
|
|
{{ if $showEdit }}
|
2021-02-20 22:54:49 +01:00
|
|
|
<div>
|
2022-01-06 13:58:10 +01:00
|
|
|
<span class="editpage">
|
2022-04-18 20:33:23 +02:00
|
|
|
<svg class="gdoc-icon gdoc_code"><use xlink:href="#gdoc_code"></use></svg>
|
2022-01-06 13:58:10 +01:00
|
|
|
<a
|
|
|
|
href="{{ $geekdocRepo }}/{{ path.Join $geekdocEditPath ($.Scratch.Get "geekdocFilePath") }}"
|
|
|
|
>
|
2022-01-23 13:21:44 +01:00
|
|
|
{{ i18n "edit_page" }}
|
2022-01-06 13:58:10 +01:00
|
|
|
</a>
|
|
|
|
</span>
|
2021-02-20 22:54:49 +01:00
|
|
|
</div>
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ end }}
|
2020-01-12 15:33:02 +01:00
|
|
|
</div>
|