2017-04-20 22:00:16 +01:00
|
|
|
<footer id="footer">
|
|
|
|
<ul class="icons">
|
2017-04-23 12:26:28 +01:00
|
|
|
{{ range .Site.Data.social.footer_accounts }}
|
|
|
|
{{ $account := index $.Site.Data.social.accounts . }}
|
2017-04-23 12:33:31 +01:00
|
|
|
<li><a href="{{ $account.link }}" class="icon {{ $account.icon }}">
|
|
|
|
<span class="label">{{ $account.name }}</span>
|
|
|
|
</a></li>
|
2017-04-23 12:26:28 +01:00
|
|
|
{{ end }}
|
2017-04-20 22:00:16 +01:00
|
|
|
</ul>
|
|
|
|
<ul class="copyright">
|
2017-09-15 08:55:27 +01:00
|
|
|
<li>© {{ title .Site.Params.author }} {{ now.Year }}.</li>
|
2017-06-24 21:22:09 +01:00
|
|
|
{{ if .OutputFormats.Get "txt" }}
|
|
|
|
{{ with .OutputFormats.Get "txt" }}
|
|
|
|
<li><a href="{{ .Permalink }}">View Raw</a></li>
|
|
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
<li><a href="{{ .Site.Data.social.accounts.github.link }}theorangeone.net">View Source</a></li>
|
|
|
|
{{ end }}
|
2017-04-23 12:33:31 +01:00
|
|
|
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
|
2017-04-20 22:00:16 +01:00
|
|
|
</ul>
|
2017-04-21 13:57:07 +01:00
|
|
|
</footer>
|