LoveIt/layouts/partials/post/footer.html

64 lines
2.5 KiB
HTML
Raw Normal View History

2020-01-31 15:53:04 +01:00
{{- $modify_date := .Lastmod.Format (.Site.Params.dateFormatToUse | default "2006-01-02") -}}
2019-08-24 13:32:41 +02:00
<div class="post-footer" id="post-footer">
2019-08-18 19:36:52 +02:00
<div class="post-info">
2019-08-19 07:26:39 +02:00
<div class="post-info-line">
<div class="post-info-mod">
2020-01-31 15:53:04 +01:00
<span>
{{- printf (T "lastMod") $modify_date -}}
</span>
2019-08-19 07:26:39 +02:00
</div>
<div class="post-info-license">
2020-01-31 15:53:04 +01:00
{{- if .Params.license -}}
<span>
{{- printf (T "license") .Params.license | safeHTML -}}
</span>
{{- end -}}
2019-08-19 07:26:39 +02:00
</div>
</div>
<div class="post-info-line">
<div class="post-info-md">
{{- if .Site.Params.page.linkToMarkdown -}}
2020-01-31 15:53:04 +01:00
{{- with .OutputFormats.Get "markdown" -}}
<span>
<a class="link-to-markdown" href="{{ .Permalink }}" target="_blank">
{{- T "seeMarkdown" -}}
2020-01-31 15:53:04 +01:00
</a>
</span>
{{- end -}}
{{- end -}}
2019-08-19 07:26:39 +02:00
</div>
<div class="post-info-share">
{{- if .Site.Params.page.socialShare -}}
2020-01-31 15:53:04 +01:00
<span>
{{- partial "post/share.html" . -}}
</span>
{{- end -}}
2019-08-19 07:26:39 +02:00
</div>
2019-08-18 19:36:52 +02:00
</div>
</div>
<div class="post-info-more">
2019-08-18 19:36:52 +02:00
<section>
2020-01-31 15:53:04 +01:00
{{- with .Params.tags -}}
{{- range . -}}
<span class="tag">
<a href="{{ "tags/" | absURL }}{{ . | urlize }}/"><i class="fas fa-tag fa-fw"></i>&nbsp;{{ . }}</a>&nbsp;
</span>
2020-01-31 15:53:04 +01:00
{{- end -}}
{{- end -}}
2019-08-18 19:36:52 +02:00
</section>
<section>
<span><a href="javascript:window.history.back();">{{ T "back" }}</a></span>&nbsp;|&nbsp;<span><a href="{{ .Site.BaseURL }}">{{ T "home" }}</a></span>
</section>
</div>
<div class="post-nav">
2020-01-31 15:53:04 +01:00
{{- if .PrevInSection -}}
<a href="{{ .PrevInSection.Permalink }}" class="prev" rel="prev" title="{{ .PrevInSection.Title }}"><i class="fas fa-angle-left fa-fw"></i>{{ .PrevInSection.Title }}</a>
2020-01-31 15:53:04 +01:00
{{- end -}}
2019-08-18 19:36:52 +02:00
{{ if .NextInSection }}
<a href="{{ .NextInSection.Permalink }}" class="next" rel="next" title="{{ .NextInSection.Title }}">{{ .NextInSection.Title }}<i class="fas fa-angle-right fa-fw"></i></a>
2020-01-31 15:53:04 +01:00
{{- end -}}
2019-08-18 19:36:52 +02:00
</div>
2020-02-06 17:10:00 +01:00
</div>