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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><%= title %></title>
<%= head %>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, sans-serif; line-height: 1.6; color: #222; max-width: 50rem; margin: 0 auto; padding: 1rem; }
a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }
footer { margin-top: 2rem; color: #888; font-size: 0.85rem; }
<%= styles %>
</style>
</head>
<body>
<%= content %>
<footer>
<p>Source on <a href="https://git.kejadlen.dev/alpha/low-quality-transcripts">git.kejadlen.dev</a>. PRs welcome on <a href="https://github.com/kejadlen/low-quality-transcripts">GitHub</a>.</p>
</footer>
<%= post_footer %>
<%= scripts %>
<script data-goatcounter="https://stats.issues.cooking/count" async src="//gc.zgo.at/count.js"></script>
</body>
</html>