1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="script-src 'none'; img-src 'self'">
<base target="_blank">
<style>
:root {
color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
body { background: #242424; color: #e8e8e8; }
a[href] { color: #7ab3e0; }
blockquote[type=cite] { border-left-color: #555; }
}
body {
margin: 8px;
font: 13px -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
}
p:first-child { margin-top: 0; }
p:last-child { margin-bottom: 0; }
a[href] { color: #3781b8; text-decoration: none; }
a[href]:hover { text-decoration: underline; }
blockquote[type=cite] {
margin: 0 0 0 0.8ex;
border-left: 1px #ccc solid;
padding-left: 1ex;
}
img { max-width: 100%; }
pre { white-space: pre-wrap; word-break: break-word; }
</style>
</head>
<body>{{.}}</body>
</html>
|