new: Added post search module

This commit is contained in:
yv1ing
2024-12-17 16:15:51 +08:00
parent 3c8f03b8b8
commit 64d139d92a
26 changed files with 590608 additions and 11 deletions

View File

@@ -0,0 +1,4 @@
function search() {
const keyword = document.getElementById("index-search-input").value;
window.location.href = "/search?keyword=" + keyword;
}