41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<div class="flex flex-wrap justify-between">
|
|
|
|
|
|
{{ 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="" />
|
|
<span>{{ i18n "Edit this page" }}</span>
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if and .GitInfo .Site.Params.BookRepo }}
|
|
<div class="commit-info">
|
|
{{- $date := partial "docs/date" (dict "Date" .GitInfo.AuthorDate.Local "Format" .Site.Params.BookDateFormat) -}}
|
|
{{- $commitPath := default "commit" .Site.Params.BookCommitPath -}}
|
|
|
|
<span>Last edited</span>
|
|
<br />
|
|
<span>
|
|
commit <a href="{{ .Site.Params.BookRepo }}/{{ $commitPath }}/{{ .GitInfo.Hash }}" target="_blank" rel="noopener">{{ .GitInfo.Hash }}</a>
|
|
</span>
|
|
<br />
|
|
<span>
|
|
author: {{ .GitInfo.AuthorName }} <{{ .GitInfo.AuthorEmail }}>
|
|
</span>
|
|
<br />
|
|
<span>
|
|
date: {{ $date }}
|
|
</span>
|
|
</div>
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ $script := resources.Get "clipboard.js" | resources.Minify }}
|
|
{{ with $script.Content }}
|
|
<script>{{ . | safeJS }}</script>
|
|
{{ end }}
|