2024-01-29 04:53:34 +00:00
|
|
|
<footer>
|
|
|
|
<hr/>
|
2024-02-12 16:30:23 +00:00
|
|
|
<a href="/{{ .Language.LanguageCode }}">{{ .Site.Title }}</a><br/>
|
2024-01-29 04:53:34 +00:00
|
|
|
</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');
|
|
|
|
}
|
|
|
|
});
|
2024-02-08 15:26:15 +00:00
|
|
|
</script>
|
2024-01-29 04:53:34 +00:00
|
|
|
</body>
|
|
|
|
</html>
|