const anchors = document.querySelectorAll('a[href*="#"]');
for (let anchor of anchors) {
if (anchor.getAttribute('href').indexOf('http') == -1) {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const blockID = anchor.getAttribute('href').substr(1);
if (document.getElementById(blockID)) {
document.getElementById(blockID).scrollIntoView({
behavior: 'smooth',
block: 'center'
});
}
});
}
}