Initial commit

This commit is contained in:
2026-02-19 15:22:47 -05:00
commit 3b38f73030
21 changed files with 1375 additions and 0 deletions

9
htdocs/common/ddg.js Normal file
View File

@@ -0,0 +1,9 @@
function duckduckgo() {
const form = document.getElementById("ddg-site-search");
const input = document.getElementById("ddg-query");
form.addEventListener("submit", function () {
const domain = window.location.hostname;
input.value = "site:" + domain + " " + input.value;
});
};