9791db1ce7
* Bug Fix: Empty .Site.Params.contentDir When .Site.Params.contentDir is left as the default: "content", calling .Site.Params.contentDir returns nothing, or maybe an empty string. To fix this, we set a default value for .Site.Params.contentDir to "content" and the url is built correctly. * Use the `default` function instead of `or` https://gohugo.io/functions/default/
24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
HTML
<div class="flex flex-wrap justify-between">
|
|
{{ if .Site.IsMultiLingual }}
|
|
{{ partial "docs/languages" . }}
|
|
{{ end }}
|
|
|
|
{{ if and .GitInfo .Site.Params.BookRepo }}
|
|
<div>
|
|
{{- $date := partial "docs/date" (dict "Date" .GitInfo.AuthorDate.Local "Format" .Site.Params.BookDateFormat) -}}
|
|
<a class="flex align-center" href="{{ .Site.Params.BookRepo }}/commit/{{ .GitInfo.Hash }}" title='{{ i18n "Last modified by" }} {{ .GitInfo.AuthorName }} | {{ $date }}' target="_blank" rel="noopener">
|
|
<img src="{{ "svg/calendar.svg" | relURL }}" class="book-icon" alt="Calendar" />
|
|
<span>{{ $date }}</span>
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ if and .File .Site.Params.BookRepo .Site.Params.BookEditPath }}
|
|
<div>
|
|
<a class="flex align-center" href="{{ .Site.Params.BookRepo }}/{{ .Site.Params.BookEditPath }}/{{ .Site.Params.contentDir | default "content" }}/{{ replace .File.Path "\\" "/" }}" target="_blank" rel="noopener">
|
|
<img src="{{ "svg/edit.svg" | relURL }}" class="book-icon" alt="Edit" />
|
|
<span>{{ i18n "Edit this page" }}</span>
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|