delete blog directory

This commit is contained in:
CJSatnarine
2025-03-31 19:30:00 -04:00
parent a24f483331
commit 82599fbe25
33 changed files with 15 additions and 14 deletions

10
static/window.js Normal file
View File

@@ -0,0 +1,10 @@
// Refreshes the page when the browser is resized.
window.addEventListener('resize', function(event) {
if (window.RT) {
clearTimeout(window.RT);
}
window.RT = setTimeout(function() {
window.location.reload(false); /* false to get page from cache */
}, 200);
});