Add a pagination partial

This commit is contained in:
kbe
2025-08-18 17:15:47 +02:00
parent 7432ac7d4d
commit c5c947c5d7
4811 changed files with 410066 additions and 38 deletions

View File

@@ -0,0 +1,24 @@
$(function() {
"use strict";
/*===============================================
Scroll Spy
===============================================*/
$('body').scrollspy({
target: '.nav',
offset: 50
});
/*===============================================
Smooth Scrolling
===============================================*/
var htmlBody = $("html,body");
var smoothLinks = $(".nav-link");
smoothLinks.on("click", function(e) {
htmlBody.animate({scrollTop: $(this.hash).offset().top - 50}, 700, "easeInOutQuart");
e.preventDefault();
});
});