Initial commit

This commit is contained in:
abrendan
2024-02-12 16:16:17 +00:00
commit 9657d16456
10 changed files with 767 additions and 0 deletions

15
templates/index.html Normal file
View File

@@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nochu</title>
</head>
<body>
<h1>Welcome to Nochu</h1>
<p>Yet another search engine.</p>
<form action="/search" method="get">
<input type="text" name="query" required>
<button type="submit">Search</button>
</form>
</body>
</html>