jakubb-hugo/layouts/partials/footer.html

22 lines
629 B
HTML
Raw Normal View History

2024-01-29 04:53:34 +00:00
<footer>
<hr/>
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a><br/>
<a href="/contact">[ Contact ]</a> <a href="/donate">[ Donate ]</a> <a href="/donate">[ RSS ]</a> <br/>
</footer>
2024-02-08 11:08:24 +00:00
<script>
// JavaScript to check if content is shorter than the screen
// and add fixed class to footer if needed
window.addEventListener('DOMContentLoaded', function() {
var content = document.querySelector('.content');
var footer = document.querySelector('footer');
if (content.offsetHeight < window.innerHeight) {
footer.classList.add('fixed');
}
});
</script>
2024-01-29 04:53:34 +00:00
</div>
</body>
</html>