Refactor Layout and improve search

This commit is contained in:
2026-04-29 19:26:01 +02:00
parent bb137e9c93
commit 903f21e7f1
8 changed files with 286 additions and 309 deletions
+7
View File
@@ -14,6 +14,13 @@
e.preventDefault();
if (window.location.pathname !== '/' && typeof movePage === 'function') movePage();
break;
case 'F':
var input = document.querySelector('.search-input');
if (!input) return;
e.preventDefault();
input.focus();
input.select();
break;
}
});
})();