mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2025-02-05 22:40:01 +00:00
25 lines
955 B
HTML
25 lines
955 B
HTML
<!-- Begin Footer section -->
|
|
<div class="section" id="footer">
|
|
<!-- Begin Footer container -->
|
|
<div class="container has-text-centered">
|
|
{{ with .Site.Params.footerText }}
|
|
{{ . | markdownify }}
|
|
{{ 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 <i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i> by <a href="https://vickylai.com" target="_blank" rel="noopener">Vicky Lai</a>.</span>
|
|
{{ end }}
|
|
</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>
|