hugo-theme-introduction/layouts/partials/footer.html

26 lines
970 B
HTML
Raw Normal View History

2018-06-25 13:03:18 +00:00
<!-- Begin Footer section -->
<div class="section" id="footer">
<!-- Begin Footer container -->
<div class="container has-text-centered">
{{ with .Site.Params.footerText }}
{{ . | markdownify }}
2018-06-11 13:44:05 +00:00
{{ else }}
<span class="footer-text"><a href="https://github.com/vickylai/hugo-theme-introduction" target="_blank" rel="noopener">Introduction</a> theme for <a href="http://gohugo.io/" target="_blank" rel="noopener">Hugo</a>. Made with <a href="https://vickylai.com" target="_blank" rel="noopener"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.</span>
2018-06-11 13:44:05 +00:00
{{ end }}
2018-06-25 13:03:18 +00:00
</div>
<!-- End Footer container -->
</div>
<!-- End Footer section -->
<!-- Bitty scrolling links script -->
<script>
$('a[href^="#"]').click(function(e) {
e.preventDefault();
var target = this.hash;
$('html, body').animate({
scrollTop: $(target).offset().top
}, 500);
return false;
})
</script>