7a32e28d4b
This applies the flexbox directive `justify-between` to the nav items, not the icons themselves. Fixes #127
9 lines
338 B
HTML
Executable file
9 lines
338 B
HTML
Executable file
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
|
|
<div class="flex justify-between">
|
|
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="{{ .Site.BaseURL }}" >
|
|
© {{ now.Format "2006" }} {{ .Site.Title }}
|
|
</a>
|
|
<div>{{ partial "social-follow.html" . }}</div>
|
|
</div>
|
|
</footer>
|