21 lines
776 B
HTML
21 lines
776 B
HTML
<footer id="footer">
|
|
<ul class="icons">
|
|
{{ range .Site.Data.social.footer_accounts }}
|
|
{{ $account := index $.Site.Data.social.accounts . }}
|
|
<li><a href="{{ $account.link }}" class="icon {{ $account.icon }}">
|
|
<span class="label">{{ $account.name }}</span>
|
|
</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
<ul class="copyright">
|
|
<li>© {{ title .Site.Params.author }} {{ now.Year }}.</li>
|
|
{{ 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 }}
|
|
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
|
|
</ul>
|
|
</footer>
|