blog/theme/navbar.js
Matthew Binning acddc1b91c
All checks were successful
Build and Deploy / deploy (push) Successful in 5s
fix: One navbar
2026-03-22 16:45:52 -07:00

9 lines
384 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
fetch('/includes/navbar.html')
.then(function (res) { return res.text(); })
.then(function (html) {
var wrapper = document.createElement('div');
wrapper.innerHTML = html.trim();
document.body.insertBefore(wrapper.firstChild, document.body.firstChild);
});
});