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
{{ partial "header.html" . }}
{{ .Content }}
{{ range .Pages.GroupByDate "2006-01" }}
<h3>{{ .Key }}</h3>
<ul>
{{ range .Pages }}
<li>
<h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
<div>{{ .Summary }}</div>
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
</li>
{{ end }}
</ul>
{{ end }}
{{ partial "footline.html" . }}
{{ partial "footer.html" . }}