Files
oddmu/diff.html
Alex Schroeder f2276a969b Add diff
2023-10-09 18:41:37 +02:00

27 lines
599 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">
<title>{{.Title}}</title>
<style>
html { max-width: 65ch; padding: 1ch; margin: auto; color: #111; background: #ffe; }
body { hyphens: auto; }
del { color: #844 }
ins { color: #484 }
</style>
</head>
<body>
<header>
<a href="/view/{{.Name}}">Back</a>
</header>
<main id="main">
<h1>{{.Title}}</h1>
<pre>
{{.Diff}}
</pre>
</main>
</body>
</html>