1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-06-27 14:01:35 +00:00
now-playing/layouts/partials/footer.html

20 lines
587 B
HTML

<footer class="footer">
<div>
{{ if (eq .Site.Params.author.name .Site.Params.creator.name) }}
A website by
{{ else }}
A website published by
{{ if isset .Site.Params.author "url" }}
<span class="semibold"><a href="{{ .Site.Params.author.url }}">{{ .Site.Params.author.name }}</a></span>
{{ else }}
<span class="semibold">{{ .Site.Params.author.name }}</span>
{{ end }}
and built by
{{ end }}
</div>
<a class="footer__logo" href="{{ .Site.Params.creator.url }}">
{{ .Site.Params.creator.name }}
</a>
</footer>