new: Added post search module

This commit is contained in:
2024-12-17 16:15:51 +08:00
parent 474bf3e6bb
commit 9386306e7e
26 changed files with 590608 additions and 11 deletions

View File

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