49 lines
No EOL
713 B
Text
49 lines
No EOL
713 B
Text
package templates
|
|
|
|
type BaseTemplateParams struct {
|
|
Title string
|
|
}
|
|
|
|
templ BaseTemplate(params BaseTemplateParams) {
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{ params.Title }</title>
|
|
<style>
|
|
body {
|
|
background-color: #000;
|
|
color: #fff;
|
|
font-family: monospace;
|
|
}
|
|
|
|
#main {
|
|
margin: 30px auto;
|
|
text-align: center;
|
|
max-width: 600px;
|
|
}
|
|
|
|
#main h1 {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
input[name="url"] {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
}
|
|
|
|
.error-message {
|
|
margin: 30px;
|
|
padding: 10px;
|
|
background-color: #aa0000;
|
|
}
|
|
|
|
a {
|
|
color: #fff;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{ children... }
|
|
</body>
|
|
</html>
|
|
} |