pidgin/nest

Jiggle footline

2020-01-02, Jason
e6d8faf88e15
Jiggle footline

As is the footline is a hacky standin for a proper footer.
So we need to be careful to keep it clear and resonable

These changes:

* Shrink and move copyright to it's own line
* Add space between blocks to help clarify what is going on
* Add migration infomation to the footline
<section class="supporters">
<b>{{ T "Our-Supporters" }}</b>
<div>
{{ range .Site.Data.supporters }}
{{ $url := urls.Parse .badge }}
{{ $style := "" }}
{{ if .style }}
{{ $style = printf "style=\"%s\"" .style }}
{{ end }}
{{ if $url.Scheme }}{{/* Absolute path */}}
<a href="{{ .url | safeHTMLAttr }}">
<img src="{{ .badge }}" alt="{{ .name | safeHTMLAttr }}" {{ $style | safeHTMLAttr }}/>
</a>
{{ else }}
<a href="{{ .url | safeHTMLAttr }}">
<img src="/images/badges/{{ .badge }}" alt="{{ .name | safeHTMLAttr }}" {{ $style | safeHTMLAttr }}/>
</a>
{{ end }}
{{ end }}
</div>
</section>