LoveIt/layouts/partials/footer.html

15 lines
791 B
HTML
Raw Normal View History

2019-02-03 12:30:44 +01:00
<footer class="footer">
<div class="copyright">
&copy;
{{ with .Site.Params.since }}
2019-08-05 15:15:01 +02:00
<span itemprop="copyrightYear">{{ if lt . now.Year }}{{ . }} - {{ end }}{{ now.Year }}</span>
2019-08-11 19:36:19 +02:00
{{ else }}
<span itemprop="copyrightYear">{{ now.Year }}</span>
2019-08-04 15:53:35 +02:00
{{ end }}
2019-08-11 19:36:19 +02:00
{{ with .Site.Author.Name }}
<span class="author" itemprop="copyrightHolder"><a href="{{ .Site.BaseURL }}">{{ . }}</a> | </span>
2019-02-03 12:30:44 +01:00
{{ end }}
2019-08-06 17:49:02 +02:00
<span>{{ (printf (T "powered") `<a href="https://gohugo.io/" target="_blank" rel="external nofollow noopener noreffer">Hugo</a>`) | safeHTML }} | {{ T "theme" }}<a href="https://github.com/dillonzq/LoveIt" target="_blank" rel="external nofollow noopener noreffer">LoveIt</a></span>
2019-02-03 12:30:44 +01:00
</div>
</footer>