This commit is contained in:
Andrew 2022-04-10 21:36:01 +07:00
parent b44fe71c28
commit a449bbb4c5
10 changed files with 1727 additions and 0 deletions

View file

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Main page</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="/css/styles.css" />
</head>
<body>
<main>
{{nonce}}
</main>
</body>
<script>
const debounce = (func, timeout = 300) => {
let timer;
return (...args) => {
clearTimeout(timer);
timer = setTimeout(() => {
func.apply(this, args);
}, timeout);
};
};
const init = async () => {
};
document.addEventListener("DOMContentLoaded", init);
</script>
</html>