21 lines
972 B
HTML
21 lines
972 B
HTML
<footer class="footer">
|
|
<div class="footer__inner">
|
|
<div class="copyright">
|
|
<span>This website does not have a comments functionality.</span>
|
|
<span>Please reach out by <a href="mailto:lvales@excipio.tech">e-mail</a> or <a href="https://schedule.excipio.tech/">scheduling a call with me!</a></span>
|
|
<span>© {{ now.Year }} Powered by <a href="https://gohugo.io">Hugo</a> :: <a href="https://github.com/panr/hugo-theme-terminal" target="_blank">Theme</a> made by <a href="https://github.com/panr" target="_blank">panr</a></span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
{{ $menu := resources.Get "js/menu.js" | js.Build }}
|
|
{{ $cp := resources.Get "js/code.js" | js.Build }}
|
|
|
|
{{ $bundle := slice $menu $cp | resources.Concat "bundle.js" | resources.Minify }}
|
|
|
|
<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>
|
|
|
|
<a rel="me" href="https://mastodon.social/@lvales"></a>
|
|
<!-- Extended footer section-->
|
|
{{ partial "extended_footer.html" . }}
|