forked from mirror/oddmu
28 lines
721 B
HTML
28 lines
721 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>{{.Title}}</title>
|
|
<style>
|
|
html { max-width: 70ch; padding: 2ch; margin: auto; color: #111; background: #ffe; }
|
|
form { display: inline-block; padding-left: 1em; }
|
|
img { max-width: 100%; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>{{.Title}}</h1>
|
|
<div>
|
|
<a href="/edit/{{.Name}}">Edit this page</a>
|
|
<form role="search" action="/search" method="GET">
|
|
<input type="text" spellcheck="false" name="q" required>
|
|
<button>Search</button>
|
|
</form>
|
|
</div>
|
|
<div>
|
|
{{.Html}}
|
|
</div>
|
|
</body>
|
|
</html>
|