hugo-book/layouts/partials/docs/footer.html

25 lines
945 B
HTML
Raw Normal View History

{{ if or .GitInfo .Site.Params.BookEditPath }}
2019-11-13 23:23:01 +00:00
<div class="book-footer justify-between">
2019-11-09 23:23:06 +00:00
{{ partial "docs/languages" . }}
{{ with .GitInfo }}
2018-12-03 07:17:01 +00:00
<div>
{{ $date := .AuthorDate.Local.Format (default "January 2, 2006" $.Site.Params.BookDateFormat) }}
2019-10-08 21:25:33 +00:00
<a class="flex align-center" href="{{ $.Site.Params.BookRepo }}/commit/{{ .Hash }}" title='Last modified {{ $date }} by {{ .AuthorName }}' target="_blank" rel="noopener">
<img src="{{ "svg/calendar.svg" | relURL }}" alt="Changed" />
<span>{{ $date }}</span>
</a>
</div>
{{ end }}
{{ with .Site.Params.BookEditPath }}
<div>
2019-10-08 21:25:33 +00:00
{{ if $.File }}
<a class="flex align-center" href="{{ $.Site.Params.BookRepo }}/{{ . }}/{{ $.File.Path }}" target="_blank" rel="noopener">
2019-11-13 23:23:01 +00:00
<img src="{{ "svg/edit.svg" | relURL }}" alt="{{ i18n "Edit this page" }}" />
2019-11-09 23:23:06 +00:00
<span>{{ i18n "Edit this page" }}</span>
2019-10-08 21:25:33 +00:00
</a>
{{ end }}
2018-12-03 07:17:01 +00:00
</div>
{{ end }}
2018-12-03 07:17:01 +00:00
</div>
{{ end }}