lyceum-site/layouts/partials/docs/footer.html

42 lines
1.3 KiB
HTML
Raw Normal View History

2024-10-03 22:08:11 +00:00
<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 }}
2024-10-04 08:47:15 +00:00
2024-10-03 22:34:38 +00:00
{{ if and .GitInfo .Site.Params.BookRepo }}
2024-10-04 08:47:15 +00:00
<div class="commit-info">
2024-10-03 22:34:38 +00:00
{{- $date := partial "docs/date" (dict "Date" .GitInfo.AuthorDate.Local "Format" .Site.Params.BookDateFormat) -}}
{{- $commitPath := default "commit" .Site.Params.BookCommitPath -}}
2024-10-04 08:47:15 +00:00
<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 }} &lt;{{ .GitInfo.AuthorEmail }}&gt;
</span>
<br />
<span>
date: {{ $date }}
</span>
2024-10-03 22:34:38 +00:00
</div>
{{ end }}
2024-10-03 22:08:11 +00:00
</div>
{{ $script := resources.Get "clipboard.js" | resources.Minify }}
{{ with $script.Content }}
<script>{{ . | safeJS }}</script>
{{ end }}