mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-03 04:47:36 +03:00
15 lines
310 B
Text
15 lines
310 B
Text
package views
|
|
|
|
templ HomePage() {
|
|
@layout("dumb") {
|
|
<div id="home">
|
|
<div>
|
|
<h1>Welcome to dumb</h1>
|
|
<p>An alternative frontend for genius.com</p>
|
|
</div>
|
|
<form method="GET" action="/search">
|
|
<input type="text" name="q" id="search-input" placeholder="Search..."/>
|
|
</form>
|
|
</div>
|
|
}
|
|
}
|