forked from mirror/oddmu
Add the check to the RELEASE file. Add "generator" with link to the sources to view, feed and static templates.
32 lines
996 B
HTML
32 lines
996 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{.Language}}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
<meta name="generator" content="Oddμ <https://src.alexschroeder.ch/oddmu.git/>"/>
|
|
<title>{{.Title}}</title>
|
|
<style>
|
|
html { max-width: 65ch; padding: 1ch; margin: auto; color: #111; background-color: #ffe }
|
|
body { hyphens: auto }
|
|
header a { margin-right: 1ch }
|
|
form { display: inline-block }
|
|
input#search { width: 12ch }
|
|
button { background-color: #eee; color: inherit; border-radius: 4px; border-width: 1px }
|
|
footer { border-top: 1px solid #888 }
|
|
img { max-width: 100% }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main id="main">
|
|
<h1>{{.Title}}</h1>
|
|
{{.HTML}}
|
|
</main>
|
|
<footer>
|
|
<address>
|
|
Comments? Send mail to Your Name <<a href="mailto:you@example.org">you@example.org</a>>
|
|
</address>
|
|
</footer>
|
|
</body>
|
|
</html>
|