2020-05-01 17:35:08 +02:00
|
|
|
<div class="flex flex-wrap justify-between">
|
2019-11-16 21:32:23 +01:00
|
|
|
|
2020-01-24 00:07:47 +01:00
|
|
|
{{ if and .GitInfo .Site.Params.BookRepo }}
|
2018-12-03 08:17:01 +01:00
|
|
|
<div>
|
2020-04-10 20:24:36 +02:00
|
|
|
{{- $date := partial "docs/date" (dict "Date" .GitInfo.AuthorDate.Local "Format" .Site.Params.BookDateFormat) -}}
|
2021-04-11 17:50:54 +02:00
|
|
|
{{- $commitPath := default "commit" .Site.Params.BookCommitPath -}}
|
|
|
|
<a class="flex align-center" href="{{ .Site.Params.BookRepo }}/{{ $commitPath }}/{{ .GitInfo.Hash }}" title='{{ i18n "Last modified by" }} {{ .GitInfo.AuthorName }} | {{ $date }}' target="_blank" rel="noopener">
|
2024-04-13 11:18:14 +02:00
|
|
|
<img src="{{ "svg/calendar.svg" | relURL }}" class="book-icon" alt="" />
|
2019-10-08 23:25:33 +02:00
|
|
|
<span>{{ $date }}</span>
|
2018-12-15 04:53:50 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
2020-01-24 00:07:47 +01:00
|
|
|
{{ end }}
|
2019-11-16 21:32:23 +01:00
|
|
|
|
2020-01-24 00:07:47 +01:00
|
|
|
{{ if and .File .Site.Params.BookRepo .Site.Params.BookEditPath }}
|
2018-12-15 04:53:50 +01:00
|
|
|
<div>
|
2024-07-03 15:55:47 +02:00
|
|
|
{{- $bookFilePath := (strings.TrimPrefix hugo.WorkingDir .Page.File.Filename | path.Join) -}}
|
|
|
|
<a class="flex align-center" href="{{ .Site.Params.BookRepo }}/{{ .Site.Params.BookEditPath }}{{ ($bookFilePath) }}" target="_blank" rel="noopener">
|
2024-04-13 11:18:14 +02:00
|
|
|
<img src="{{ "svg/edit.svg" | relURL }}" class="book-icon" alt="" />
|
2019-11-10 00:23:06 +01:00
|
|
|
<span>{{ i18n "Edit this page" }}</span>
|
2019-10-08 23:25:33 +02:00
|
|
|
</a>
|
2018-12-03 08:17:01 +01:00
|
|
|
</div>
|
2020-01-13 17:46:19 +01:00
|
|
|
{{ end }}
|
2021-08-18 11:12:50 +02:00
|
|
|
|
2020-01-24 00:07:47 +01:00
|
|
|
</div>
|
2021-05-03 23:52:00 +02:00
|
|
|
|
|
|
|
{{ $script := resources.Get "clipboard.js" | resources.Minify }}
|
|
|
|
{{ with $script.Content }}
|
|
|
|
<script>{{ . | safeJS }}</script>
|
|
|
|
{{ end }}
|