1
Fork 0
theorangeone.net-legacy/layouts/partials/footer.html

16 lines
619 B
HTML
Raw Normal View History

<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 }}
</ul>
<ul class="copyright">
2017-05-20 22:15:57 +01:00
<li>&copy; {{ title .Site.Params.author }} {{ .Page.Now.Year }} - All rights reserved.</li>
<li><a href="{{ .Site.Data.social.accounts.github.link }}theorangeone.net">View Source</a></li>
2017-04-23 12:33:31 +01:00
<li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
2017-04-21 13:57:07 +01:00
</footer>