2022-10-26 23:19:03 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>dumb</title>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/style.css" />
|
2023-09-14 16:32:42 +03:30
|
|
|
<link rel="icon" href="/static/logo.svg" type="image/svg+xml">
|
2022-11-12 17:30:18 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2022-10-26 23:19:03 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-12-17 21:45:45 +01:00
|
|
|
<main id="app">
|
|
|
|
{{template "navbar"}}
|
|
|
|
<div id="home">
|
|
|
|
<div>
|
|
|
|
<h1>Welcome to dumb</h1>
|
|
|
|
<p>An alternative frontend for genius.com</p>
|
|
|
|
</div>
|
2023-03-09 17:11:37 +01:00
|
|
|
<form method="GET" action="/search">
|
|
|
|
<input type="text" name="q" id="search-input" placeholder="Search..." />
|
|
|
|
</form>
|
|
|
|
|
2022-10-26 23:19:03 +01:00
|
|
|
</div>
|
2022-12-17 21:45:45 +01:00
|
|
|
{{template "footer"}}
|
2022-10-26 23:19:03 +01:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|